summaryrefslogtreecommitdiffstats
path: root/base/deploy/src/scriptlets/pkijython.py
diff options
context:
space:
mode:
Diffstat (limited to 'base/deploy/src/scriptlets/pkijython.py')
-rw-r--r--base/deploy/src/scriptlets/pkijython.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/deploy/src/scriptlets/pkijython.py b/base/deploy/src/scriptlets/pkijython.py
index cb1c1d918..ffd8884cd 100644
--- a/base/deploy/src/scriptlets/pkijython.py
+++ b/base/deploy/src/scriptlets/pkijython.py
@@ -271,15 +271,15 @@ class security_databases:
class rest_client:
client = None
- def initialize(self, base_uri, pki_dry_run_flag, log_level):
+ def initialize(self, client_config, pki_dry_run_flag, log_level):
try:
if log_level >= config.PKI_JYTHON_INFO_LOG_LEVEL:
print "%s %s '%s'" %\
(log.PKI_JYTHON_INDENTATION_2,
log.PKI_JYTHON_INITIALIZING_REST_CLIENT,
- base_uri)
+ client_config.serverURI)
if not pki_dry_run_flag:
- self.client = ConfigurationRESTClient(base_uri, None)
+ self.client = ConfigurationRESTClient(client_config)
return self.client
except URISyntaxException, e:
e.printStackTrace()