Skip to content

Commit

Permalink
fix: pass params to iolet (#6200)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoanFM authored Sep 17, 2024
1 parent 3223ce9 commit be385a5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions jina/clients/base/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
)
Expand All @@ -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__()
Expand Down

0 comments on commit be385a5

Please sign in to comment.