Исправлено указание порта

master3.4 3.3.1.1
Mike Khiretskiy 9 years ago
parent f227a4ff8a
commit 6a29a252c6

@ -133,7 +133,7 @@ def client_post_request (cert_path, args):
port = args.port or clVars.Get('core.cl_core_port')
url = "https://%s:%d/?wsdl" %(args.by_host, port)
url = "https://%s:%s/?wsdl" %(args.by_host, port)
print '%s\n'% url, _("connecting...")
from client_class import Client_suds
try:
@ -190,7 +190,7 @@ def client_get_cert(cert_path, args):
fc.close()
port = args.port or clVars.Get('core.cl_core_port')
url = "https://%s:%d/?wsdl" %(args.from_host, port)
url = "https://%s:%s/?wsdl" %(args.from_host, port)
print '%s\n' %url, _("connecting...")
from client_class import Client_suds

@ -397,7 +397,7 @@ def main(wait_thread):
client_get_cert (path_to_cert, args)
return 0
url = "https://%s:%d/?wsdl" %(host, port)
url = "https://%s:%s/?wsdl" %(host, port)
clear()
serv_hostname = get_server_hostname(host, path_to_cert)

Loading…
Cancel
Save