Skip to content

Commit

Permalink
bugfix: memory visibility of active attribute in file mode (#2466)
Browse files Browse the repository at this point in the history
  • Loading branch information
ph3636 committed Mar 31, 2020
1 parent 5767edb commit 6c46de7
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 GlobalSession implements SessionLifecycle, SessionStorable {

private String applicationData;

private boolean active = true;
private volatile boolean active = true;

private final ArrayList<BranchSession> branchSessions = new ArrayList<>();

Expand Down

0 comments on commit 6c46de7

Please sign in to comment.