Skip to content

Commit

Permalink
Merge pull request #328 from baifendian/dev
Browse files Browse the repository at this point in the history
修改k8s相关后台获取bdms信息url书写错误的bug
  • Loading branch information
qqzxingchen authored Nov 11, 2016
2 parents da61067 + b6fa3b4 commit 81e28b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Aries/kd_agent/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def trans_obj_to_easy_dis(obj_info):
@trans_return_json
def get_mytask_graph(request):
kd_logger.info( 'call get_mytask_graph' )
url = 'http:/%s:%s/k8s/api/v1/namespaces/mytaskgraph'%(settings.BDMS_IP, settings.BDMS_PORT) #任务运行网络图 rest api
url = 'http://%s:%s/k8s/api/v1/namespaces/mytaskgraph'%(settings.BDMS_IP, settings.BDMS_PORT) #任务运行网络图 rest api
try:
req = requests.Session()
r = req.get(url)
Expand Down

0 comments on commit 81e28b4

Please sign in to comment.