Made correction for url patch

This patch makes a correction to the url path used when making a
requests api call to ranger-agent-api pod.

Change-Id: I7b5db2dbbfade6ffec3bdb7e288bfa2197b57a65
This commit is contained in:
Chi Lo 2020-02-06 13:42:09 -08:00
parent cb8c4a9f07
commit a56c788fa3
1 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ def notify_ranger_agent_api(uuid):
for i in range(5):
time.sleep(15)
try:
resp = requests.post('%s/v1/ord/ord_notifier' % (url),
resp = requests.post(url,
files=files,
headers=headers)
if resp.status_code != 200:
@ -126,7 +126,7 @@ def validate_resource_status(uuid):
for i in range(5):
time.sleep(15)
try:
resp = requests.get('%s/v1/ord/ord_notifier?Id=%s' % (url, uuid))
resp = requests.get('%s?Id=%s' % (url, uuid))
if resp.status_code != 200:
sys.stderr.write("Unexpected status code received: %s\n" %
resp.status_code)