ntp: Fix a bad context usage

This commit is contained in:
世界 2024-08-06 12:23:33 +08:00
parent 4498e57839
commit fa81eabc29
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -141,7 +141,7 @@ func (s *Service) update() error {
if s.timeout > 0 {
ctx, cancel = context.WithTimeout(ctx, s.timeout)
}
response, err := Exchange(s.ctx, s.dialer, s.server)
response, err := Exchange(ctx, s.dialer, s.server)
if cancel != nil {
cancel()
}