diff --git a/ldclient/client.py b/ldclient/client.py index d2767d48..c4708e89 100644 --- a/ldclient/client.py +++ b/ldclient/client.py @@ -121,7 +121,7 @@ def __update_availability(self, available: bool): def __check_availability(self): try: - if self.store.available: + if self.store.is_available(): self.__update_availability(True) except BaseException as e: log.error("Unexpected error from data store status function: %s", e)