From 58d829a575ee719fcf788d6c46defe55dda104c9 Mon Sep 17 00:00:00 2001 From: killianmuldoon Date: Thu, 14 Jul 2022 15:06:54 +0100 Subject: [PATCH] fix log formatting in runtime client Signed-off-by: killianmuldoon --- internal/runtime/client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/runtime/client/client.go b/internal/runtime/client/client.go index 73b0e7b9534c..84f714ef70f2 100644 --- a/internal/runtime/client/client.go +++ b/internal/runtime/client/client.go @@ -369,7 +369,7 @@ func (c *client) CallExtension(ctx context.Context, hook runtimecatalog.Hook, fo } if retryResponse, ok := response.(runtimehooksv1.RetryResponseObject); ok && retryResponse.GetRetryAfterSeconds() != 0 { - log.Info(fmt.Sprintf("extension handler returned blocking response with retryAfterSeconds of %q", retryResponse.GetRetryAfterSeconds())) + log.Info(fmt.Sprintf("extension handler returned blocking response with retryAfterSeconds of %d", retryResponse.GetRetryAfterSeconds())) } else { log.Info("extension handler returned success response") }