diff --git a/jina/clients/base/http.py b/jina/clients/base/http.py index 24c5f985f7e2e..c10cb40749e27 100644 --- a/jina/clients/base/http.py +++ b/jina/clients/base/http.py @@ -181,6 +181,10 @@ async def _get_results( logger=self.logger, tracer_provider=self.tracer_provider, timeout=timeout, + max_attempts=max_attempts, + initial_backoff=initial_backoff, + max_backoff=max_backoff, + backoff_multiplier=backoff_multiplier, **kwargs, ) ) @@ -191,6 +195,10 @@ async def _get_results( logger=self.logger, tracer_provider=self.tracer_provider, timeout=timeout, + max_attempts=max_attempts, + initial_backoff=initial_backoff, + max_backoff=max_backoff, + backoff_multiplier=backoff_multiplier, **kwargs, ) self.iolet = await self.iolet.__aenter__()