From 79f090cc8f09db151168dfcf18180f5b035c6ddf Mon Sep 17 00:00:00 2001 From: winlin Date: Thu, 5 Sep 2024 18:17:06 +0800 Subject: [PATCH] Refine comments. --- proxy/srs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/srs.go b/proxy/srs.go index e4c620081..d05a39c61 100644 --- a/proxy/srs.go +++ b/proxy/srs.go @@ -220,7 +220,7 @@ func (v *srsMemoryLoadBalancer) Pick(ctx context.Context, streamURL string) (*SR return server, nil } - // Gather all servers, alive in 60s ago. + // Gather all servers that were alive within the last few seconds. var servers []*SRSServer v.servers.Range(func(key string, server *SRSServer) bool { if time.Since(server.UpdatedAt) < srsServerAliveDuration {