diff options
author | Vincent Ambo <mail@tazj.in> | 2021-12-19T17·05+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2021-12-19T17·08+0000 |
commit | eea2dbadd0d38bc017d1fc3fe7b71ac38b6e4bea (patch) | |
tree | 48c4420d2b7382ab715307e0122f0b5af029859c /ops | |
parent | 1d4715781ca8954d8c20e7a7420a7775fd671416 (diff) |
fix(ops/besadii): fix Gerrit URL format ... again r/3307
got into some kind of race with different patchsets of this CL somehow, idk Change-Id: I3dcdb708f141829b866fbd786483710b43ea9824 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4481 Autosubmit: tazjin <mail@tazj.in> Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'ops')
-rw-r--r-- | ops/besadii/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/besadii/main.go b/ops/besadii/main.go index d4dcc40b9533..7eb10089dcf4 100644 --- a/ops/besadii/main.go +++ b/ops/besadii/main.go @@ -160,7 +160,7 @@ func loadConfig() (*config, error) { // linkToChange creates the full link to a change's patchset in Gerrit func linkToChange(cfg *config, changeId, patchset string) string { - return fmt.Sprintf("%s/c/%s/+/%s/%s", cfg.GerritUrl, "c", cfg.Repository, "+", changeId, patchset) + return fmt.Sprintf("%s/c/%s/+/%s/%s", cfg.GerritUrl, cfg.Repository, changeId, patchset) } // updateGerrit posts a comment on a Gerrit CL to indicate the current build status. |