Skip to content

Commit 03dcc81

Browse files
Check for domain home before oracle home in applications and libraries
1 parent 6d532f8 commit 03dcc81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/python/wlsdeploy/tool/discover/discoverer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ def _is_oracle_home_file(self, file_name):
553553
:return: true if in oracle home location
554554
"""
555555
py_str = str(file_name)
556-
return (not py_str.startswith(self._model_context.get_domain_home)) and \
556+
return (not py_str.startswith(self._model_context.get_domain_home())) and \
557557
(py_str.startswith(self._model_context.get_oracle_home()) or
558558
py_str.startswith(self._model_context.get_wl_home()))
559559

0 commit comments

Comments
 (0)