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 47aa615 commit 62be9c1Copy full SHA for 62be9c1
internal/master.go
@@ -296,6 +296,10 @@ func (w *InstanceLogWriter) Write(p []byte) (n int, err error) {
296
if w.instance.Status != "error" && !w.instance.deleted &&
297
(strings.Contains(line, "Server error:") || strings.Contains(line, "Client error:")) {
298
w.instance.Status = "error"
299
+ w.instance.Ping = 0
300
+ w.instance.Pool = 0
301
+ w.instance.TCPS = 0
302
+ w.instance.UDPS = 0
303
w.master.instances.Store(w.instanceID, w.instance)
304
}
305
0 commit comments