Skip to content

Commit ccc1336

Browse files
fix log formatting in runtime client
Signed-off-by: killianmuldoon <[email protected]>
1 parent e5f7e84 commit ccc1336

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/runtime/client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ func (c *client) CallExtension(ctx context.Context, hook runtimecatalog.Hook, fo
369369
}
370370

371371
if retryResponse, ok := response.(runtimehooksv1.RetryResponseObject); ok && retryResponse.GetRetryAfterSeconds() != 0 {
372-
log.Info(fmt.Sprintf("extension handler returned blocking response with retryAfterSeconds of %q", retryResponse.GetRetryAfterSeconds()))
372+
log.Info(fmt.Sprintf("extension handler returned blocking response with retryAfterSeconds of %d", retryResponse.GetRetryAfterSeconds()))
373373
} else {
374374
log.Info("extension handler returned success response")
375375
}

0 commit comments

Comments
 (0)