From e231b6e83956635e5e4923c064cab19e6730150a Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sat, 15 Feb 2020 15:39:49 +0100 Subject: bridges: pass the context to Init for when a client build process needs it --- bridge/gitlab/export.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bridge/gitlab/export.go') diff --git a/bridge/gitlab/export.go b/bridge/gitlab/export.go index 156aabaa..918e6b5e 100644 --- a/bridge/gitlab/export.go +++ b/bridge/gitlab/export.go @@ -38,7 +38,7 @@ type gitlabExporter struct { } // Init . -func (ge *gitlabExporter) Init(repo *cache.RepoCache, conf core.Configuration) error { +func (ge *gitlabExporter) Init(_ context.Context, repo *cache.RepoCache, conf core.Configuration) error { ge.conf = conf ge.identityClient = make(map[entity.Id]*gitlab.Client) ge.cachedOperationIDs = make(map[string]string) -- cgit