Skip to content

Commit 2b5bdc8

Browse files
committed
Fixed problem with server template listen port workaround
1 parent 5825371 commit 2b5bdc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/python/wlsdeploy/tool/create/domain_creator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ def __create_machines_clusters_and_servers(self, delete_now=True):
847847
# Listen Port for 7001 in order to show up in the config.xml
848848
if len(server_template_nodes) > 0:
849849
for template in server_template_nodes:
850-
listen_port = dictionary_utils.get_dictionary_element(self._topology[SERVER_TEMPLATE][template], LISTEN_PORT)
850+
listen_port = dictionary_utils.get_element(self._topology[SERVER_TEMPLATE][template], LISTEN_PORT)
851851
if listen_port is not None:
852852
temp_loc = LocationContext()
853853
temp_loc.append_location(SERVER_TEMPLATE)

0 commit comments

Comments
 (0)