Skip to content

Commit

Permalink
fix(app): show starting message (#1099)
Browse files Browse the repository at this point in the history
  • Loading branch information
olevski committed Jun 13, 2022
1 parent 84e8035 commit 2c56b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renku_notebooks/api/schemas/servers_get.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def get_status(js):
output["message"] = get_failed_message(
get_failed_containers(container_statuses)
)
if state == ServerStatusEnum.Starting:
if state == ServerStatusEnum.Starting.value:
output["message"] = get_starting_message(container_statuses)
return output

Expand Down

0 comments on commit 2c56b17

Please sign in to comment.