Ensure that persistable channel queue is added to manager

This commit is contained in:
Andrew Thornton 2020-01-06 17:27:30 +00:00
parent 99a6f484fd
commit 52ee212c95
No known key found for this signature in database
GPG Key ID: 3CDE74631F13A748
1 changed files with 4 additions and 2 deletions

View File

@ -74,14 +74,16 @@ func NewPersistableChannelQueue(handle HandlerFunc, cfg, exemplar interface{}) (
levelQueue, err := NewLevelQueue(handle, levelCfg, exemplar)
if err == nil {
return &PersistableChannelQueue{
queue := &PersistableChannelQueue{
ChannelQueue: channelQueue.(*ChannelQueue),
delayedStarter: delayedStarter{
internal: levelQueue.(*LevelQueue),
name: config.Name,
},
closed: make(chan struct{}),
}, nil
}
_ = GetManager().Add(queue, PersistableChannelQueueType, config, exemplar, nil)
return queue, nil
}
if IsErrInvalidConfiguration(err) {
// Retrying ain't gonna make this any better...