aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2025-03-18 10:38:50 +0100
committerTaras Madan <tarasmadan@google.com>2025-03-18 10:13:07 +0000
commit22a6c2b1752ef57d8d612e233d35f6be8c3bf7df (patch)
tree75b2e708706c70a92575254ecb324869ba01b7b6
parentce3352cd01a728bcf99adce6330051b80ea425c5 (diff)
syz-ci/manager.go: fix parameter propagation
-rw-r--r--syz-ci/manager.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-ci/manager.go b/syz-ci/manager.go
index 2a6424710..defcedbc9 100644
--- a/syz-ci/manager.go
+++ b/syz-ci/manager.go
@@ -923,7 +923,7 @@ func (mgr *Manager) uploadCoverJSONLToGCS(mgrSrc, gcsDest string, curTime time.T
mgr.mgrcfg.DashboardClient,
mgr.name, curTime.Format(time.DateOnly),
curTime.Hour(), curTime.Minute())
- if err := mgr.uploadFile(mgr.cfg.CoverPipelinePath, fileName, pr, false); err != nil {
+ if err := mgr.uploadFile(gcsDest, fileName, pr, false); err != nil {
return fmt.Errorf("failed to uploadFileGCS(): %w", err)
}
return nil