File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -85,3 +85,10 @@ Bug fix release:
85
85
86
86
* [ Issue 44] ( https://github.com/adobe-apiplatform/umapi-client.py/issues/44 )
87
87
* Default behavior of UsersQuery is now correct: only return direct memberships in the info about queried users.
88
+
89
+ ### Version 2.5.1
90
+
91
+ Bug fix release:
92
+
93
+ * [ Issue 47] ( https://github.com/adobe-apiplatform/umapi-client.py/issues/47 )
94
+ * When an immediate retry was done due to a timeout, there was a logging error.
Original file line number Diff line number Diff line change @@ -423,7 +423,7 @@ def call():
423
423
sleep (retry_wait )
424
424
total_time += retry_wait
425
425
else :
426
- if self .logger : self .logger .warning ("Immediate retry..." , retry_wait )
426
+ if self .logger : self .logger .warning ("Immediate retry..." )
427
427
if self .logger : self .logger .error ("UMAPI timeout...giving up after %d attempts (%d seconds)." ,
428
428
self .retry_max_attempts , total_time )
429
429
raise UnavailableError (self .retry_max_attempts , total_time , result )
Original file line number Diff line number Diff line change 18
18
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
19
# SOFTWARE.
20
20
21
- __version__ = "2.5"
21
+ __version__ = "2.5.1 "
You can’t perform that action at this time.
0 commit comments