Skip to content

Commit

Permalink
style: fix overload and cli autocomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
jina-bot committed May 17, 2023
1 parent 70c8bdb commit 9871d76
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion jina/orchestrate/deployments/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,10 @@ def start(self) -> 'Deployment':
self.enter_context(self.head_pod)
if self._include_gateway:
_args = self.pod_args['gateway']
_update_gateway_args(_args, gateway_load_balancer=getattr(_args, 'gateway_load_balancer', False))
_update_gateway_args(
_args,
gateway_load_balancer=getattr(_args, 'gateway_load_balancer', False),
)
_args.noblock_on_start = True
self.gateway_pod = PodFactory.build_pod(
_args, gateway_load_balancer=self._gateway_load_balancer
Expand Down

0 comments on commit 9871d76

Please sign in to comment.