diff options
author | amine <hilalyamine@gmail.com> | 2019-11-23 19:20:55 +0100 |
---|---|---|
committer | amine <hilalyamine@gmail.com> | 2019-11-23 19:20:55 +0100 |
commit | 014e754fcdcd59c633e2bfc490fe34b0dcd0d89a (patch) | |
tree | 4681552cbc68a6a4dd846e7d10ca7a2619ff5575 /bridge/github/import.go | |
parent | b1d0f48f67e931ebd39a359a573bcd62093167b3 (diff) | |
download | git-bug-014e754fcdcd59c633e2bfc490fe34b0dcd0d89a.tar.gz |
bridge/github: use core.ConfigKeyToken instead of keyToken
Diffstat (limited to 'bridge/github/import.go')
-rw-r--r-- | bridge/github/import.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bridge/github/import.go b/bridge/github/import.go index 86444057..c0fb3d6c 100644 --- a/bridge/github/import.go +++ b/bridge/github/import.go @@ -39,7 +39,7 @@ func (gi *githubImporter) Init(conf core.Configuration) error { // ImportAll iterate over all the configured repository issues and ensure the creation of the // missing issues / timeline items / edits / label events ... func (gi *githubImporter) ImportAll(ctx context.Context, repo *cache.RepoCache, since time.Time) (<-chan core.ImportResult, error) { - gi.iterator = NewIterator(ctx, 10, gi.conf[keyOwner], gi.conf[keyProject], gi.conf[keyToken], since) + gi.iterator = NewIterator(ctx, 10, gi.conf[keyOwner], gi.conf[keyProject], gi.conf[core.ConfigKeyToken], since) out := make(chan core.ImportResult) gi.out = out @@ -553,7 +553,7 @@ func (gi *githubImporter) getGhost(repo *cache.RepoCache) (*cache.IdentityCache, "login": githubv4.String("ghost"), } - gc := buildClient(gi.conf[keyToken]) + gc := buildClient(gi.conf[core.ConfigKeyToken]) ctx, cancel := context.WithTimeout(gi.iterator.ctx, defaultTimeout) defer cancel() |