Skip to content

Commit

Permalink
Fix visibility queue log message and level (#3600)
Browse files Browse the repository at this point in the history
  • Loading branch information
yux0 committed Nov 15, 2022
1 parent c82d43c commit c14f643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/history/visibilityQueueProcessor.go
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ func (t *visibilityQueueProcessorImpl) completeTaskLoop() {
_ = backoff.ThrottleRetry(func() error {
err := t.completeTask()
if err != nil {
t.logger.Info("Failed to complete transfer task", tag.Error(err))
t.logger.Error("Failed to complete visibility task", tag.Error(err))
}
return err
}, completeTaskRetryPolicy, func(err error) bool {
Expand Down

0 comments on commit c14f643

Please sign in to comment.