Skip to content

Commit

Permalink
Fix static var.
Browse files Browse the repository at this point in the history
  • Loading branch information
garyrussell committed Jul 6, 2022
1 parent 9ca9e2d commit 6a3b1ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public class RetryTopicConfigurationSupport {

private static final String BACK_OFF_MANAGER_THREAD_EXECUTOR_BEAN_NAME = "backOffManagerThreadExecutor";

private static AtomicBoolean ONLY_ONE_ALLOWED = new AtomicBoolean(true);
private static final AtomicBoolean ONLY_ONE_ALLOWED = new AtomicBoolean(true);

private final RetryTopicComponentFactory componentFactory = createComponentFactory();

Expand Down

0 comments on commit 6a3b1ae

Please sign in to comment.