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
-- All defaultChannel in the same configured cluster are either enabled xor all are disabled
-- All SSL Channel in the same configured cluster are either enabled xor all are disabled, and, if enabled, have the same port
-- All admin port in the same configure cluster are either enabled xore all are disabled, and, if enabled, have the same port
-- All nap with same name in configured cluster have same protocol
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.")
368
-
return
385
+
iflistenPort!=firstListenPort:
386
+
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.")
0 commit comments