Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

Commit

Permalink
chore: prepare release 1.7.10 (#889)
Browse files Browse the repository at this point in the history
* feat: (producer) thread level healthchecks (#886)

* feat: deep healthchecks of threads

* fix: add failback time format to handle some old timestamps in production

* fix: single entities were not triggering check_updates() when using the KernelAPI (#888)
  • Loading branch information
shawnsarwar authored Aug 21, 2020
1 parent 5ae4f35 commit 60f111e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aether-producer/aether/producer/kernel_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def check_updates(self, realm, schema_id=None, schema_name=None, modified=''):
)
try:
response = self._fetch(url=url, realm=realm)
return response['count'] > 1
return response['count'] > 0
except Exception:
logger.warning('Could not access kernel API to check for updates')
return False
Expand Down

0 comments on commit 60f111e

Please sign in to comment.