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:
8585
8686* [ Issue 44] ( https://github.com/adobe-apiplatform/umapi-client.py/issues/44 )
8787 * 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():
423423 sleep (retry_wait )
424424 total_time += retry_wait
425425 else :
426- if self .logger : self .logger .warning ("Immediate retry..." , retry_wait )
426+ if self .logger : self .logger .warning ("Immediate retry..." )
427427 if self .logger : self .logger .error ("UMAPI timeout...giving up after %d attempts (%d seconds)." ,
428428 self .retry_max_attempts , total_time )
429429 raise UnavailableError (self .retry_max_attempts , total_time , result )
Original file line number Diff line number Diff line change 1818# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919# SOFTWARE.
2020
21- __version__ = "2.5"
21+ __version__ = "2.5.1 "
You can’t perform that action at this time.
0 commit comments