Skip to content

Commit

Permalink
Merge pull request #125 from mganisin/wait_for_tenant-logging
Browse files Browse the repository at this point in the history
just a bit more of logging
  • Loading branch information
Marian Ganisin authored Jul 7, 2022
2 parents e5cd461 + b4d406f commit dfbd6b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion threescale_api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ def wait_for_tenant(self) -> bool:
and len(self.accounts.list()) >= 1 \
and self.services.exists() \
and len(self.services.list()) >= 1
except Exception:
except Exception as err:
log.info("wait_for_tenant failed: %s", err)
return False

@property
Expand Down

0 comments on commit dfbd6b7

Please sign in to comment.