diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-15 03:06:10 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-02-15 03:07:45 +0100 |
commit | 432a816dde18a12c1479ed8151a11c29929476e0 (patch) | |
tree | 89c965c63f07c1091ff34ec3d163171a73eba29f /bridge/github/import.go | |
parent | e9aff2a2a103b43852ecf7b57ae9ab297890eeed (diff) | |
parent | 362c0c7e2e1ce9a8e2918376a340c76f46569d64 (diff) | |
download | git-bug-432a816dde18a12c1479ed8151a11c29929476e0.tar.gz |
Merge remote-tracking branch 'origin/master' into cheshirekow-jira
Diffstat (limited to 'bridge/github/import.go')
-rw-r--r-- | bridge/github/import.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/github/import.go b/bridge/github/import.go index ea0ccba3..3267c013 100644 --- a/bridge/github/import.go +++ b/bridge/github/import.go @@ -49,7 +49,7 @@ func (gi *githubImporter) Init(repo *cache.RepoCache, conf core.Configuration) e // 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, gi.client, 10, gi.conf[keyOwner], gi.conf[keyProject], since) + gi.iterator = NewIterator(ctx, gi.client, 10, gi.conf[confKeyOwner], gi.conf[confKeyProject], since) out := make(chan core.ImportResult) gi.out = out |