Skip to content

Commit

Permalink
Merge pull request nusdbsystem#69 from naili-xing/dev
Browse files Browse the repository at this point in the history
Fix a bug in operator
  • Loading branch information
NLGithubWP authored May 26, 2020
2 parents f90e122 + 6f0062e commit 8b3ed14
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions singa_auto/container/kubernetes_operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ def update_ingress(self, ingress_name: str, ingress_body: dict):
body=body)
else:
# otherwise, create new one
self.api_instance.create_namespaced_ingress_with_http_info(name=ingress_name,
namespace='default',
self.api_instance.create_namespaced_ingress_with_http_info(namespace='default',
body=body)

def _update_ingress_paths(self, ingress_body: dict) -> list:
Expand Down

0 comments on commit 8b3ed14

Please sign in to comment.