We have noticed that after 108 x hosts the following async method starts to fail:
async def validate_credentials(self):
response = await self.get_request(self.root_uri + "/Systems")
if response.status == 401:
logger.error(f"Failed to authenticate. Verify your credentials for {self.host}")
raise BadfishException
if response.status not in [200, 201]:
logger.error(f"Failed to communicate with {self.host}")
raise BadfishException
We have noticed that after 108 x hosts the following async method starts to fail: