Closed alex-schneider closed 1 year ago
handler/transport/probe.go:
// do not start go-routine on config check (-watch)
if _, exist := opts.Context.Value(request.ConfigDryRun).(bool); exist {
return
}
if _, exist := tc.Context.Value(request.ConfigDryRun).(bool); !exist {
go p.probe(opts.Context)
}
Looks like the first part already tries to solve the problem. Why does it not work?
closes #692
Reviewer checklist