Skip to content

Commit 42e33e3

Browse files
author
Istemi Ekin Akkus
authored
Merge pull request #56 from lhoste-bell/patch-1
fix(mgmt): missing quote in Knative url
2 parents 823ecef + 79ffd34 commit 42e33e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ManagementService/management_cleanup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
if __name__ == "__main__":
4646
print('Checking if deployment exists')
4747
resp = requests.get(
48-
kubeurl+"/apis/serving.knative.dev/v1/namespaces/"+namespace+"/services,
48+
kubeurl+"/apis/serving.knative.dev/v1/namespaces/"+namespace+"/services",
4949
headers={"Authorization": "Bearer "+token, "Accept": "application/json"},
5050
verify=cafile,
5151
proxies={"https":""})

0 commit comments

Comments
 (0)