From bde7e9a6b27dd34c2e642ffb7470b8664e1f1e04 Mon Sep 17 00:00:00 2001 From: crountre Date: Thu, 13 Jun 2019 13:34:00 -0500 Subject: [PATCH] Return the correct value from target server groups when no server groups --- core/src/main/python/wlsdeploy/tool/util/target_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/python/wlsdeploy/tool/util/target_helper.py b/core/src/main/python/wlsdeploy/tool/util/target_helper.py index fbc6c58a9f..5fc6edf6b8 100644 --- a/core/src/main/python/wlsdeploy/tool/util/target_helper.py +++ b/core/src/main/python/wlsdeploy/tool/util/target_helper.py @@ -99,7 +99,7 @@ def target_server_groups_to_servers(self, server_groups_to_target): self.logger.entering(server_groups_to_target, class_name=self.__class_name, method_name=_method_name) if len(server_groups_to_target) == 0: - return None, None + return list(), list() location = LocationContext() root_path = self.alias_helper.get_wlst_attributes_path(location)