Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToon Claes <toon@gitlab.com>2022-08-16 14:47:26 +0300
committerWill Chandler <wchandler@gitlab.com>2022-08-20 06:49:38 +0300
commit72e1c78e920a917ae96a25271173740e6557888e (patch)
treea637cef25392bedd1651349b64fb8ec922fbc412 /internal/blackbox
parentcb0e4c4d751ebbe3a18bddc69aa2e7792b9415aa (diff)
go: Update module github.com/pelletier/go-toml to v2
With this change we upgrade go-toml to v2. This includes changing the import paths to include v2.
Diffstat (limited to 'internal/blackbox')
-rw-r--r--internal/blackbox/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/blackbox/config.go b/internal/blackbox/config.go
index c9e5966ed..9ea3c33a9 100644
--- a/internal/blackbox/config.go
+++ b/internal/blackbox/config.go
@@ -5,7 +5,7 @@ import (
"net/url"
"time"
- "github.com/pelletier/go-toml"
+ "github.com/pelletier/go-toml/v2"
logconfig "gitlab.com/gitlab-org/gitaly/v15/internal/gitaly/config/log"
"gitlab.com/gitlab-org/gitaly/v15/internal/helper/duration"
)