Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In debugging/development, we may use the "HeaderClient" instead of the real "ConfidantClient". Some strange behaviour here made my debugging journey more difficult, so lets fix that. in `models.py:32` ``` from secretupdater.headerclient import HeaderClient as ConfidantClient ``` `models.py:182` ``` client = ConfidantClient( ... ) app.logger.debug(client.config) ``` this fails because `client` (when its `HeaderClient`) doesnt have a `.config`. Lets just give it one.
- Loading branch information