diff options
| author | Taras Madan <tarasmadan@google.com> | 2025-03-18 10:38:50 +0100 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2025-03-18 10:13:07 +0000 |
| commit | 22a6c2b1752ef57d8d612e233d35f6be8c3bf7df (patch) | |
| tree | 75b2e708706c70a92575254ecb324869ba01b7b6 /syz-ci | |
| parent | ce3352cd01a728bcf99adce6330051b80ea425c5 (diff) | |
syz-ci/manager.go: fix parameter propagation
Diffstat (limited to 'syz-ci')
| -rw-r--r-- | syz-ci/manager.go | 2 |
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 |
