We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e93af21 commit ad42260Copy full SHA for ad42260
modules/indexer/issues/indexer.go
@@ -51,12 +51,13 @@ var (
51
// issueIndexerQueue queue of issue ids to be updated
52
issueIndexerQueue Queue
53
issueIndexer Indexer
54
- waitChannel = make(chan struct{})
+ waitChannel chan struct{}
55
)
56
57
// InitIssueIndexer initialize issue indexer, syncReindex is true then reindex until
58
// all issue index done.
59
func InitIssueIndexer(syncReindex bool) {
60
+ waitChannel = make(chan struct{})
61
go func() {
62
var populate bool
63
var dummyQueue bool
0 commit comments