Skip to content

Commit

Permalink
Remove await
Browse files Browse the repository at this point in the history
  • Loading branch information
marrobi committed Jan 3, 2024
1 parent df711f6 commit f82fd06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api_app/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.18.7"
__version__ = "0.18.8"
2 changes: 1 addition & 1 deletion api_app/services/health_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async def create_state_store_status() -> Tuple[StatusEnum, str]:
message = ""
try:
container = await Database().get_container_proxy(STATE_STORE_RESOURCES_CONTAINER)
await container.query_items("SELECT TOP 1 * FROM c")
container.query_items("SELECT TOP 1 * FROM c")
except exceptions.ServiceRequestError:
status = StatusEnum.not_ok
message = strings.STATE_STORE_ENDPOINT_NOT_RESPONDING
Expand Down

0 comments on commit f82fd06

Please sign in to comment.