From 208791cf760e5544ed09d5629ddc9d6e99ab579c Mon Sep 17 00:00:00 2001 From: William Li Date: Thu, 9 May 2024 16:27:13 +0800 Subject: [PATCH] sign off Signed-off-by: William Li --- velero-plugin-for-gcp/object_store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/velero-plugin-for-gcp/object_store.go b/velero-plugin-for-gcp/object_store.go index 4b0da3d..3b236ad 100644 --- a/velero-plugin-for-gcp/object_store.go +++ b/velero-plugin-for-gcp/object_store.go @@ -141,7 +141,7 @@ func (o *ObjectStore) Init(config map[string]string) error { return errors.WithStack(err) } - // if using a endpoint, we need to pass it when creating the client + // if using a endpoint, we need to pass it when creating the object store client if endpoint, ok := config[endpointConfigKey]; ok { clientOptions = append(clientOptions, option.WithEndpoint(endpoint)) }