mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
No effective change - code cleanup - removed unused param
This commit is contained in:
@@ -278,7 +278,7 @@ public class McastClusterManager implements ClusterBroadcast, Runnable {
|
||||
/**
|
||||
* Get the overall status and activity of this cluster node.
|
||||
*/
|
||||
public McastStatus getStatus(boolean reset) {
|
||||
public McastStatus getStatus() {
|
||||
|
||||
synchronized (managerThread) {
|
||||
long currentPacketId = packetWriter.currentPacketId();
|
||||
@@ -347,7 +347,7 @@ public class McastClusterManager implements ClusterBroadcast, Runnable {
|
||||
|
||||
if (lastStatusTimeFreqMillis > 0) {
|
||||
if (lastStatusTime < System.currentTimeMillis() - lastStatusTimeFreqMillis) {
|
||||
McastStatus status = getStatus(false);
|
||||
McastStatus status = getStatus();
|
||||
logger.info("Cluster Status: " + status.getSummary());
|
||||
lastStatusTime = System.currentTimeMillis();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user