Skip to content

Commit

Permalink
don't look up clowdapps when the environment is deleting (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason-RH authored Dec 3, 2021
1 parent cad09f6 commit b9e03dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bonfire/namespaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def __str__(self):

@property
def clowdapps(self):
if not self.reserved:
if not self.reserved or not self.ready:
return "none"
else:
clowd_apps = get_json("app", namespace=self.name)
Expand Down

0 comments on commit b9e03dc

Please sign in to comment.