Commit f7e9bc2
Fix ExponentialBackoffRetryPolicy.__init__ missing self in super() call
super(ExponentialBackoffRetryPolicy).__init__() creates an unbound super
object, so the parent RetryPolicy.__init__() is never actually invoked.
Fix by passing self: super(ExponentialBackoffRetryPolicy, self).__init__().1 parent 117abb2 commit f7e9bc2
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1158 | 1158 | | |
1159 | 1159 | | |
1160 | 1160 | | |
1161 | | - | |
| 1161 | + | |
1162 | 1162 | | |
1163 | 1163 | | |
1164 | 1164 | | |
| |||
0 commit comments