Skip to content

Commit

Permalink
spring-projectsGH-427: Use parsedMultExp instead of multiplierExpression
Browse files Browse the repository at this point in the history
  • Loading branch information
aftabshk committed May 9, 2024
1 parent a814391 commit f4df7c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ private BackOffPolicy getBackoffPolicy(Backoff backoff, boolean stateless) {
String randomExpression = (String) attrs.get("randomExpression");
Expression parsedRandomExp = null;

if (multiplier > 0 || multiplierExpression != null) {
if (multiplier > 0 || parsedMultExp != null) {
isRandom = backoff.random();
if (StringUtils.hasText(randomExpression)) {
parsedRandomExp = parse(randomExpression);
Expand Down

0 comments on commit f4df7c2

Please sign in to comment.