about summary refs log tree commit diff
path: root/ops/besadii/main.go
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-12-19T17·05+0300
committerclbot <clbot@tvl.fyi>2021-12-19T17·08+0000
commiteea2dbadd0d38bc017d1fc3fe7b71ac38b6e4bea (patch)
tree48c4420d2b7382ab715307e0122f0b5af029859c /ops/besadii/main.go
parent1d4715781ca8954d8c20e7a7420a7775fd671416 (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/besadii/main.go')
-rw-r--r--ops/besadii/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/besadii/main.go b/ops/besadii/main.go
index d4dcc40b95..7eb10089dc 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.