mirror of https://github.com/milvus-io/milvus.git
Fix eventmanager retry interval (#15631)
See also: #15608 Signed-off-by: yangxuan <xuan.yang@zilliz.com>pull/15643/head
parent
a1dfcba460
commit
23dfbf1f34
|
@ -60,7 +60,7 @@ func (e *channelEventManager) Run() {
|
|||
zap.String("retry interval", retryWatchInterval.String()),
|
||||
zap.Error(err))
|
||||
|
||||
<-time.NewTimer(time.Second).C
|
||||
<-time.NewTimer(retryWatchInterval).C
|
||||
|
||||
select {
|
||||
case e, ok := <-e.eventChan:
|
||||
|
|
Loading…
Reference in New Issue