You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
In the class 【com.alibaba.nacos.naming.consistency.persistent.ClusterVersionJudgement】,there is a bug
The obj of this class alway submit a task【runVersionListener】to execute ClusterVersionJudge,even when 【allMemberIsNewVersion == true】,which is redundant
Expected behavior
when 【allMemberIsNewVersion == true】 and already execute 【notifyAllListener】,do not execute 【GlobalExecutor.submitClusterVersionJudge(this::runVersionListener, TimeUnit.SECONDS.toMillis(5));】again
Describe the bug
In the class 【com.alibaba.nacos.naming.consistency.persistent.ClusterVersionJudgement】,there is a bug
The obj of this class alway submit a task【runVersionListener】to execute ClusterVersionJudge,even when 【allMemberIsNewVersion == true】,which is redundant
Expected behavior
when 【allMemberIsNewVersion == true】 and already execute 【notifyAllListener】,do not execute 【GlobalExecutor.submitClusterVersionJudge(this::runVersionListener, TimeUnit.SECONDS.toMillis(5));】again
Acutally behavior
alway execute 【GlobalExecutor.submitClusterVersionJudge(this::runVersionListener, TimeUnit.SECONDS.toMillis(5));】
The text was updated successfully, but these errors were encountered: