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

Commit 590ade6

Browse files
authored
Merge pull request #6 from splicemachine/DBAAS-1954
added http:// to get_pod_uri
2 parents 7f46657 + 10beda5 commit 590ade6

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)