Skip to content

Commit

Permalink
Correctly propogate retries
Browse files Browse the repository at this point in the history
  • Loading branch information
damccorm authored Oct 16, 2024
1 parent 1e27978 commit 2f15a66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/python/apache_beam/ml/inference/vllm_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def start_server(self, retries=3):
server_cmd.append(v)
self._server_process, self._server_port = start_process(server_cmd)

self.check_connectivity()
self.check_connectivity(retries)

def get_server_port(self) -> int:
if not self._server_started:
Expand Down

0 comments on commit 2f15a66

Please sign in to comment.