Skip to content

Commit 3276644

Browse files
committed
Pass client cert to restclient
1 parent 94ead65 commit 3276644

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

hpcframework.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,11 @@ def _kill_task_by_hostname(self, hostname):
227227
print "setup_path: " + args.setup_path
228228
print "headnode: " + args.headnode
229229
print "ssl_thumbprint: " + args.ssl_thumbprint
230+
print "client_cert: " + args.client_cert
230231
print "heartbeat_uri: " + args.heartbeat_uri
231232
if args.node_group != "":
232233
print "node_group: " + args.node_group
233234

234-
hpcpack_framework = HpcpackFramwork(args.script_path, args.setup_path, args.headnode, args.heartbeat_uri,
235-
args.node_group)
235+
hpcpack_framework = HpcpackFramwork(args.script_path, args.setup_path, args.headnode, args.ssl_thumbprint,
236+
args.client_cert, args.heartbeat_uri, args.node_group)
236237
hpcpack_framework.start()

0 commit comments

Comments
 (0)