Skip to content
This repository was archived by the owner on Apr 15, 2022. It is now read-only.

Commit 10beda5

Browse files
committed
added http:// to get_pod_uri
1 parent 7f46657 commit 10beda5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

splicemachine/ml/management.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
def get_pod_uri(pod, port, pod_count=0):
99
import os
1010
try:
11-
return '{pod}-{pod_count}-node.{framework}.mesos:{port}'.format(pod=pod, pod_count=pod_count, framework=os.environ['FRAMEWORK_NAME'], port=port)
11+
return 'http://{pod}-{pod_count}-node.{framework}.mesos:{port}'.format(pod=pod, pod_count=pod_count, framework=os.environ['FRAMEWORK_NAME'], port=port)
1212
except KeyError as e:
1313
raise KeyError("Uh Oh! FRAMEWORK_NAME variable was not found... are you running in Zeppelin?")
1414

0 commit comments

Comments
 (0)