Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4682355 commit a518047Copy full SHA for a518047
coderd/provisionerdserver/provisionerdserver.go
@@ -246,7 +246,7 @@ func (s *server) heartbeatLoop() {
246
start := s.timeNow()
247
hbCtx, hbCancel := context.WithTimeout(s.lifecycleCtx, s.heartbeatInterval)
248
if err := s.heartbeat(hbCtx); err != nil && !database.IsQueryCanceledError(err) {
249
- s.Logger.Error(hbCtx, "heartbeat failed", slog.Error(err))
+ s.Logger.Warn(hbCtx, "heartbeat failed", slog.Error(err))
250
}
251
hbCancel()
252
elapsed := s.timeNow().Sub(start)
0 commit comments