aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/gitlab/import.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-02-10 01:29:51 +0100
committerGitHub <noreply@github.com>2020-02-10 01:29:51 +0100
commit9f3618d886d461ea806468a8c690a4a303d66d9b (patch)
tree9d941dd499a3bffbbba3295c58a6b77b5b6feeca /bridge/gitlab/import.go
parent3caffeef4d2ed25d4eb5d4bfd262f4fc3b92561f (diff)
parentbd7b50bc8638d3b6c776dd974de32a1ea385c835 (diff)
downloadgit-bug-9f3618d886d461ea806468a8c690a4a303d66d9b.tar.gz
Merge pull request #317 from MichaelMure/bridges-improve
github/gitlab: many fixes and improvments at the config step
Diffstat (limited to 'bridge/gitlab/import.go')
-rw-r--r--bridge/gitlab/import.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/bridge/gitlab/import.go b/bridge/gitlab/import.go
index d699554b..4fccb47e 100644
--- a/bridge/gitlab/import.go
+++ b/bridge/gitlab/import.go
@@ -33,7 +33,11 @@ type gitlabImporter struct {
func (gi *gitlabImporter) Init(repo *cache.RepoCache, conf core.Configuration) error {
gi.conf = conf
- creds, err := auth.List(repo, auth.WithTarget(target), auth.WithKind(auth.KindToken))
+ creds, err := auth.List(repo,
+ auth.WithTarget(target),
+ auth.WithKind(auth.KindToken),
+ auth.WithMeta(auth.MetaKeyBaseURL, conf[keyGitlabBaseUrl]),
+ )
if err != nil {
return err
}