pyxecm 2.0.1__py3-none-any.whl → 2.0.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pyxecm might be problematic. Click here for more details.

pyxecm/otds.py CHANGED
@@ -565,6 +565,7 @@ class OTDS:
565
565
  self.logger.info("Session has expired - try to re-authenticate...")
566
566
  self.authenticate(revalidate=True)
567
567
  retries += 1
568
+ time.sleep(REQUEST_RETRY_DELAY / 10) # Add a delay before retrying
568
569
  else:
569
570
  # Handle plain HTML responses to not pollute the logs
570
571
  content_type = response.headers.get("content-type", None)