aboutsummaryrefslogtreecommitdiffstats
path: root/syz-ci
diff options
context:
space:
mode:
Diffstat (limited to 'syz-ci')
-rw-r--r--syz-ci/manager.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/syz-ci/manager.go b/syz-ci/manager.go
index 14ecaa9b5..218f7ecc4 100644
--- a/syz-ci/manager.go
+++ b/syz-ci/manager.go
@@ -4,6 +4,7 @@
package main
import (
+ "context"
"crypto/sha256"
"encoding/json"
"errors"
@@ -969,7 +970,7 @@ func (mgr *Manager) uploadFile(dstPath, name string, file io.Reader, allowPublis
func uploadFileGCS(URL string, file io.Reader, publish bool) error {
URL = strings.TrimPrefix(URL, "gs://")
- GCS, err := gcs.NewClient()
+ GCS, err := gcs.NewClient(context.Background())
if err != nil {
return fmt.Errorf("failed to create GCS client: %w", err)
}