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
errorMsg="The non-dynamic cluster {0}'s server {1}'s {2} is {3} but its server {4}'s {2} is {5}. All {2} values for the same channel in a cluster must be the same."
self.addError("The non-dynamic cluster "+self.name(cluster) +"'s server "+self.name(firstServer) +"'s listen port is "+str(firstListenPort) +" but its server "+self.name(server) +"'s listen port is "+str(listenPort) +". All ports for the same channel in a cluster must be the same.")
387
-
iflistenPortEnabled!=firstListenPortEnabled:
388
-
self.addError("The non-dynamic cluster "+self.name(cluster) +"'s server "+self.name(firstServer) +" has listen port enabled: "+str(firstListenPortEnabled) +" but its server "+self.name(server) +"'s listen port enabled: "+str(listenPortEnabled) +". Channels in a cluster must be either all enabled or disabled.")
389
-
ifsslListenPort!=firstSslListenPort:
390
-
self.addError("The non-dynamic cluster "+self.name(cluster) +"'s server "+self.name(firstServer) +"'s ssl listen port is "+str(firstSslListenPort) +" but its server "+self.name(server) +"'s ssl listen port is "+str(sslListenPort) +". All ports for the same channel in a cluster must be the same.")
self.addError("The non-dynamic cluster "+self.name(cluster) +"'s server "+self.name(firstServer) +" has ssl listen port enabled: "+str(firstSslListenPortEnabled) +" but its server "+self.name(server) +"'s ssl listen port enabled: "+str(sslListenPortEnabled) +". Channels in a cluster must be either all enabled or disabled.")
393
-
ifadminPort!=firstAdminListenPort:
394
-
self.addError("The non-dynamic cluster "+self.name(cluster) +"'s server "+self.name(firstServer) +"'s ssl listen port is "+str(firstAdminPort) +" but its server "+self.name(server) +"'s ssl listen port is "+str(adminPort) +". All ports for the same channel in a cluster must be the same.")
395
-
ifadminPortEnabled!=firstAdminPortEnabled:
396
-
self.addError("The non-dynamic cluster "+self.name(cluster) +"'s server "+self.name(firstServer) +" has ssl listen port enabled: "+str(firstAdminPortEnabled) +" but its server "+self.name(server) +"'s ssl listen port enabled: "+str(adminPortEnabled) +". Channels in a cluster must be either all enabled or disabled.")
self.addError("The non-dynamic cluster "+self.name(cluster) +" has network access point "+self.name(nap.getName()) +" with conflicting protocols : "+self.name(nap.getProtocol()) +", "+self.name(serverNap[nap.getName()]) +". All protocols for the same network access point in a cluster must be the same.")
self.addError("The non-dynamic cluster "+self.name(cluster) +" has mismatched number of network access points in servers "+self.name(firstServer) +" and "+self.name(server) +". All network access points in a cluster must be the same."
self.addError("The non-dynamic cluster "+self.name(cluster) +" has mismatched network access point "+self.name(nap) +" in server "+self.name(firstServer) +" and "+self.name(server) +". All network access points in a cluster must be the same.")
416
+
return
417
+
else:
418
+
self.addError("The non-dynamic cluster "+self.name(cluster) +" has mismatched network access point "+self.name(nap) +" in server "+self.name(firstServer) +" and "+self.name(server) +". All network access points in a cluster must be the same.")
0 commit comments