Skip to content

Commit 8e8ef50

Browse files
committed
merge conflicts
2 parents 3fd63c2 + 5a7331b commit 8e8ef50

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

docs/changelog.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# Changelog
22

3+
## v1.3.3
4+
5+
* Bugfix: Pass error types to wait strategy in retry decorator ([#25](https://github.com/austind/retryhttp/pull/25))
6+
37
## v1.3.2
48

5-
* Bugfix: Don't pass `stop`, `wait`, and `retry` keyword arguments from [`retryhttp.retry`][] on to `tenacity.retry()` ([#23](https://github.com/austind/retryhttp/issues/23))
9+
* Bugfix: Don't pass `stop`, `wait`, and `retry` keyword arguments from [`retryhttp.retry`][] on to `tenacity.retry()` ([#23](https://github.com/austind/retryhttp/pull/23))
610

711
## v1.3.1
812

9-
* Fixed all outstanding mypy errors. ([#20](https://github.com/austind/retryhttp/issues/20)
13+
* Fixed all outstanding mypy errors. ([#20](https://github.com/austind/retryhttp/issues/20))
1014

1115
## v1.3.0
1216

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[project]
33
name = "retryhttp"
4-
version = "1.3.2"
4+
version = "1.3.3"
55
description = "Retry potentially transient HTTP errors in Python."
66
license = {file = "LICENSE"}
77
readme = "README.md"

retryhttp/_retry.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,9 @@ def retry(
154154
wait_network_errors=wait_network_errors,
155155
wait_timeouts=wait_timeouts,
156156
wait_rate_limited=wait_rate_limited,
157+
server_error_codes=server_error_codes,
158+
network_errors=network_errors,
159+
timeouts=timeouts,
157160
)
158161

159162
stop = kwargs.pop("stop", None) or stop_after_attempt(max_attempt_number)

0 commit comments

Comments
 (0)