From eea2dbadd0d38bc017d1fc3fe7b71ac38b6e4bea Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 19 Dec 2021 20:05:45 +0300 Subject: fix(ops/besadii): fix Gerrit URL format ... again 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 Reviewed-by: grfn Tested-by: BuildkiteCI --- ops/besadii/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ops/besadii/main.go') 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. -- cgit 1.4.1