Description
Hi,
tried to remove the application "XY" using updateDomain.sh, but I got the following error:
1. WLSDPLY-09334: Application "XY" not found. Please specify a valid application for deletion.
However, the application is present on the server and is running.
I found that the issue is in applications_online_deployer.py, in the __get_existing_apps function.
The applications in the apps
variable are being searched for in the running_apps
variable, but apps
is of type string.
The comparison reads character by character instead of the full application name.
I solved it by adding the following line:
apps = [item.strip() for item in apps.strip("[]").split(',')]
Just below line 185 in applications_online_deployer.py.
Is this the correct solution?
I'm running WDT under Java 1.8.0_401 and WebLogic version 12.2.1.4.0.240104.
Thank You.