Skip to content

Commit bf58995

Browse files
authored
Issue #715 - Use correct signature for non-ATP RCURunner (#716)
1 parent ef04ea6 commit bf58995

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core/src/main/python/wlsdeploy/tool/create/domain_creator.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,8 +335,10 @@ def __run_rcu(self):
335335
rcu_sys_pass = self.model_context.get_rcu_sys_pass()
336336
rcu_schema_pass = self.model_context.get_rcu_schema_pass()
337337
rcu_db_user = self.model_context.get_rcu_db_user()
338+
rcu_extra_args = dict()
338339

339-
runner = RCURunner(domain_type, oracle_home, java_home, rcu_db, rcu_prefix, rcu_schemas, None)
340+
runner = RCURunner(domain_type, oracle_home, java_home, rcu_db, rcu_prefix, rcu_schemas, None,
341+
rcu_extra_args)
340342
runner.setRCUAdminUser(rcu_db_user)
341343
runner.runRcu(rcu_sys_pass, rcu_schema_pass)
342344

0 commit comments

Comments
 (0)