]
Michal Babacek closed MODCLUSTER-53.
------------------------------------
Closing. Clean-up.
At least one of the following applies:
* the issue has been thoroughly tested as a part of one of the current releases
or
* it hasn't occurred in ~2 years
or
* it's utterly harmless
Error state recording in ClusteredMCMPHandler can cause unnecessary
reset requests
----------------------------------------------------------------------------------
Key: MODCLUSTER-53
URL:
https://issues.jboss.org/browse/MODCLUSTER-53
Project: mod_cluster
Issue Type: Bug
Security Level: Public(Everyone can see)
Affects Versions: 1.0.0.Beta3
Reporter: Paul Ferraro
Assignee: Paul Ferraro
Fix For: 1.0.0.Beta4
Change List<Boolean> to a AtomicReference<ResetState>, where ResetState is:
enum ResetState { NONE, REQUIRED, PENDING }
Reset is necessary if state == ResetState.REQUIRED
Recording the initiation of a reset set the state to ResetState.PENDING
Recording the completion of a reset changes the state to NONE, only if the state is still
ResetState.PENDING