Skip to content

Commit 72da570

Browse files
committed
Merge branch 'deploy-error-key' into 'main'
Corrected translation key for message See merge request weblogic-cloud/weblogic-deploy-tooling!1498
2 parents 9561fec + d24c255 commit 72da570

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/python/wlsdeploy/tool/deploy/model_deployer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Copyright (c) 2017, 2022, Oracle Corporation and/or its affiliates. All rights reserved.
2+
Copyright (c) 2017, 2023, Oracle Corporation and/or its affiliates. All rights reserved.
33
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44
"""
55
from oracle.weblogic.deploy.util import PyWLSTException
@@ -32,7 +32,7 @@ def deploy_resources(model, model_context, aliases, wlst_mode=WlstModes.OFFLINE)
3232
resources_deployer = ResourcesDeployer(model, model_context, aliases, wlst_mode=wlst_mode)
3333
resources_deployer.deploy(location)
3434
except PyWLSTException, pwe:
35-
ex = exception_helper.create_deploy_exception('WLSDPLY-09111', pwe.getLocalizedMessage(), error=pwe)
35+
ex = exception_helper.create_deploy_exception('WLSDPLY-09650', pwe.getLocalizedMessage(), error=pwe)
3636
_logger.throwing(ex, class_name=_class_name, method_name=_method_name)
3737
raise ex
3838

0 commit comments

Comments
 (0)