platform: Fix group update interval not taking effect

This commit is contained in:
hiddify 2024-02-06 15:56:22 +08:00 committed by 世界
parent f8c400cffc
commit aaf30bf92b
No known key found for this signature in database
GPG Key ID: CD109927C34A63C4
1 changed files with 8 additions and 1 deletions

View File

@ -58,6 +58,13 @@ func (c *CommandClient) handleGroupConn(conn net.Conn) {
}
func (s *CommandServer) handleGroupConn(conn net.Conn) error {
var interval int64
err := binary.Read(conn, binary.BigEndian, &interval)
if err != nil {
return E.Cause(err, "read interval")
}
ticker := time.NewTicker(time.Duration(interval))
defer ticker.Stop()
ctx := connKeepAlive(conn)
for {
service := s.service
@ -75,7 +82,7 @@ func (s *CommandServer) handleGroupConn(conn net.Conn) error {
select {
case <-ctx.Done():
return ctx.Err()
case <-time.After(2 * time.Second):
case <-ticker.C:
}
select {
case <-ctx.Done():