Skip to content

Commit

Permalink
JAV-370 fix pr comment
Browse files Browse the repository at this point in the history
Signed-off-by: zhengyangyong <yangyong.zheng@huawei.com>
  • Loading branch information
zhengyangyong committed Oct 9, 2017
1 parent 5dac8ab commit 0a87f15
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -48,7 +48,7 @@ public SagaRequestImpl(
this.transaction = transaction;
this.compensation = compensation;
this.fallback = fallback;
this.failRetryDelayMilliseconds = failRetryDelayMilliseconds == 0 ? 50 : failRetryDelayMilliseconds;
this.failRetryDelayMilliseconds = failRetryDelayMilliseconds <= 0 ? 50 : failRetryDelayMilliseconds;
this.parents = parents == null ? new String[0] : parents;
}

Expand Down

0 comments on commit 0a87f15

Please sign in to comment.