File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 22
22
aggregator=_aggregator,
23
23
validate=lambda _resp: _resp.status == "published",
24
24
timeout=lambda: timeout(self._retry_count),
25
- error_validate=lambda x : self._retry_count >= max_retries,
25
+ error_validate=lambda _ : self._retry_count >= max_retries,
26
26
error_message=lambda: f"The maximum number of retries exceeded. (${ self._retry_count} /${ max_retries} )",
27
27
)
28
28
49
49
aggregator=_aggregator,
50
50
validate=lambda _resp: _resp.status == "published",
51
51
timeout=lambda: timeout(self._retry_count),
52
- error_validate=lambda x : self._retry_count >= max_retries,
52
+ error_validate=lambda _ : self._retry_count >= max_retries,
53
53
error_message=lambda: f"The maximum number of retries exceeded. (${ self._retry_count} /${ max_retries} )",
54
54
)
55
55
You can’t perform that action at this time.
0 commit comments