|
6 | 6 | """ |
7 | 7 | import javaos as os |
8 | 8 | import sys |
9 | | - |
10 | | - |
11 | 9 | from java.io import IOException |
12 | 10 | from java.lang import IllegalArgumentException |
13 | 11 | from java.lang import IllegalStateException |
14 | 12 | from java.lang import String |
15 | | -from java.io import File |
16 | | - |
17 | 13 | from oracle.weblogic.deploy.create import CreateException |
18 | 14 | from oracle.weblogic.deploy.deploy import DeployException |
19 | 15 | from oracle.weblogic.deploy.util import CLAException |
20 | 16 | from oracle.weblogic.deploy.util import FileUtils |
21 | 17 | from oracle.weblogic.deploy.util import TranslateException |
22 | 18 | from oracle.weblogic.deploy.util import VariableException |
23 | | -from oracle.weblogic.deploy.util import WebLogicDeployToolingVersion |
24 | 19 | from oracle.weblogic.deploy.util import WLSDeployArchive |
25 | 20 | from oracle.weblogic.deploy.util import WLSDeployArchiveIOException |
| 21 | +from oracle.weblogic.deploy.util import WebLogicDeployToolingVersion |
26 | 22 | from oracle.weblogic.deploy.validate import ValidateException |
27 | 23 |
|
28 | 24 | sys.path.append(os.path.dirname(os.path.realpath(sys.argv[0]))) |
@@ -345,6 +341,7 @@ def validateRCUArgsAndModel(model_context, model): |
345 | 341 | has_atpdbinfo = atp_helper.has_atpdbinfo(rcu_db_info) |
346 | 342 |
|
347 | 343 | if model_context.get_archive_file_name() and not has_regular_db: |
| 344 | + os.environ['oracle.jdbc.fanEnabled'] = 'false' |
348 | 345 | # 1. If it does not have the oracle.net.tns_admin specified, then extract to domain/atpwallet |
349 | 346 | # 2. If it is plain old regular oracle db, do nothing |
350 | 347 | # 3. If it deos not have tns_admin in the model, then the wallet must be in the archive |
|
0 commit comments