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
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.")
411
+
iflistenPortEnabled!=firstListenPortEnabled:
412
+
self.addError("The non-dynamic cluster "+self.name(cluster) +"'s server "+self.name(firstServer) +" has listen port enabled: "+self.booleanToString(firstListenPortEnabled) +" but its server "+self.name(server) +"'s listen port enabled: "+self.booleanToString(listenPortEnabled) +". Channels in a cluster must be either all enabled or disabled.")
413
+
ifsslListenPort!=firstSslListenPort:
414
+
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: "+self.booleanToString(firstSslListenPortEnabled) +" but its server "+self.name(server) +"'s ssl listen port enabled: "+self.booleanToString(sslListenPortEnabled) +". Channels in a cluster must be either all enabled or disabled.")
417
+
ifadminPort!=firstAdminPort:
418
+
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.")
419
+
ifadminPortEnabled!=firstAdminPortEnabled:
420
+
self.addError("The non-dynamic cluster "+self.name(cluster) +"'s server "+self.name(firstServer) +" has ssl listen port enabled: "+self.booleanToString(firstAdminPortEnabled) +" but its server "+self.name(server) +"'s ssl listen port enabled: "+self.booleanToString(adminPortEnabled) +". Channels in a cluster must be either all enabled or disabled.")
self.addError("The non-dynamic cluster "+self.name(cluster)+"'s server "+self.name(firstServer)+"'s listen port is "+str(firstPort) +" but its server "+self.name(server)+"'s listen port is "+str(port) +". All ports for the same channel in a cluster must be the same, including the default channel and the default SSL channel.")
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 servers "+self.name(firstServer) +" and "+self.name(server) +". All network access points in a cluster must be the same.")
457
+
return
458
+
else:
459
+
self.addError("The non-dynamic cluster "+self.name(cluster) +" has mismatched network access point "+self.name(nap) +" in servers "+self.name(firstServer) +" and "+self.name(server) +". All network access points in a cluster must be the same.")
0 commit comments