Skip to content

Commit c3be037

Browse files
Tom Barnesrjeberhard
andauthored
Fix introspection error message. (#4133)
Co-authored-by: Ryan Eberhard <[email protected]>
1 parent 9e0e26f commit c3be037

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

operator/src/main/resources/scripts/introspectDomain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ def validateNonDynamicClusterReferencedByAtLeastOneServer(self, cluster):
498498
def validateNonDynamicClusterNotReferencedByAnyServerTemplates(self, cluster):
499499
for template in self.env.getDomain().getServerTemplates():
500500
if self.env.getClusterOrNone(template) is cluster:
501-
self.addError("The WebLogic configured cluster " + self.name(cluster) + " is referenced by the server template " + self.name(template) + ", the operator does not support 'mixed clusters' that host both dynamic (templated) servers and configured servers.")
501+
self.addError("The WebLogic configured cluster " + self.name(cluster) + " is referenced by the server template " + self.name(template) + ", the operator does not support configured clusters referenced by a server template.")
502502

503503
LISTEN_PORT = 'listen port'
504504
LISTEN_PORT_ENABLED = 'listen port enabled'

0 commit comments

Comments
 (0)