File tree 2 files changed +14
-9
lines changed
2 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -314,7 +314,10 @@ func (o *TemplateRouterOptions) Run() error {
314
314
if isTrue (util .Env ("ROUTER_USE_PROXY_PROTOCOL" , "" )) {
315
315
checkBackend = metrics .ProxyProtocolHTTPBackendAvailable (u )
316
316
}
317
- checkSync := metrics .HasSynced (& ptrTemplatePlugin )
317
+ checkSync , err := metrics .HasSynced (& ptrTemplatePlugin )
318
+ if err != nil {
319
+ return err
320
+ }
318
321
checkController := metrics .ControllerLive ()
319
322
liveChecks := []healthz.HealthzChecker {checkController }
320
323
if ! (isTrue (util .Env ("ROUTER_BIND_PORTS_BEFORE_SYNC" , "" ))) {
Original file line number Diff line number Diff line change @@ -38,17 +38,19 @@ func HTTPBackendAvailable(u *url.URL) healthz.HealthzChecker {
38
38
39
39
// HasSynced returns a healthz check that verifies the router has been synced at least
40
40
// once.
41
- func HasSynced (router * * templateplugin.TemplatePlugin ) healthz.HealthzChecker {
41
+ // routerPtr is a pointer because it may not yet be defined (there's a chicken-and-egg problem
42
+ // with when the health checker and router object are set up).
43
+ func HasSynced (routerPtr * * templateplugin.TemplatePlugin ) (healthz.HealthzChecker , error ) {
44
+ if routerPtr == nil {
45
+ return nil , fmt .Errorf ("Nil routerPtr passed to HasSynced" )
46
+ }
47
+
42
48
return healthz .NamedCheck ("has-synced" , func (r * http.Request ) error {
43
- if router != nil {
44
- if (* router ).Router .SyncedAtLeastOnce () == true {
45
- return nil
46
- } else {
47
- return fmt .Errorf ("Router not synced" )
48
- }
49
+ if * routerPtr == nil || ! (* routerPtr ).Router .SyncedAtLeastOnce () {
50
+ return fmt .Errorf ("Router not synced" )
49
51
}
50
52
return nil
51
- })
53
+ }), nil
52
54
}
53
55
54
56
func ControllerLive () healthz.HealthzChecker {
You can’t perform that action at this time.
0 commit comments