[skip ci]Remove unnecessary log in index (#8630)

Signed-off-by: xiaofan-luan <xiaofan.luan@zilliz.com>
This commit is contained in:
Xiaofan 2021-09-26 22:03:58 +08:00 committed by GitHub
parent 40c6e01b41
commit 55f8baa6cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -95,7 +95,6 @@ func (queue *BaseTaskQueue) PopUnissuedTask() task {
defer queue.utLock.Unlock() defer queue.utLock.Unlock()
if queue.unissuedTasks.Len() <= 0 { if queue.unissuedTasks.Len() <= 0 {
log.Fatal("sorry, but the unissued task list is empty!")
return nil return nil
} }

View File

@ -94,7 +94,6 @@ func (queue *BaseTaskQueue) PopUnissuedTask() task {
defer queue.utLock.Unlock() defer queue.utLock.Unlock()
if queue.unissuedTasks.Len() <= 0 { if queue.unissuedTasks.Len() <= 0 {
log.Debug("IndexNode PopUnissued task sorry, but the unissued task list is empty!")
return nil return nil
} }