From 6400db87178527fafc651513dac8898cb3f38a05 Mon Sep 17 00:00:00 2001 From: Simon Leet <31784195+CodeMonkeyLeet@users.noreply.github.com> Date: Thu, 2 Sep 2021 09:51:50 -0700 Subject: [PATCH] Add Close() to GCPStorage binding (#1111) Co-authored-by: Artur Souza --- bindings/gcp/bucket/bucket.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bindings/gcp/bucket/bucket.go b/bindings/gcp/bucket/bucket.go index 82189e9a3..71afe9ba9 100644 --- a/bindings/gcp/bucket/bucket.go +++ b/bindings/gcp/bucket/bucket.go @@ -99,3 +99,7 @@ func (g *GCPStorage) Invoke(req *bindings.InvokeRequest) (*bindings.InvokeRespon return nil, nil } + +func (g *GCPStorage) Close() error { + return g.client.Close() +}