Skip to content

Commit

Permalink
release: 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
devxb committed Jan 30, 2024
1 parent 40370fb commit 3c2f786
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ private void publishWithRetry(int currentRetryCount, Message message, @Nullable
if (MAX_RETRY_COUNT == currentRetryCount) {
return;
}
if (errorCode == ErrorCode.INTERNAL
if (errorCode == null
|| errorCode == ErrorCode.INTERNAL
|| errorCode == ErrorCode.CONFLICT
|| errorCode == ErrorCode.UNKNOWN
|| errorCode == ErrorCode.DATA_LOSS) {
Expand Down

0 comments on commit 3c2f786

Please sign in to comment.