Skip to content

Commit

Permalink
Change back the state labels in metadata status.
Browse files Browse the repository at this point in the history
  • Loading branch information
wtgee committed May 17, 2024
1 parent bc78930 commit e2f5748
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/panoptes/pocs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ def should_retry(self):
def status(self) -> dict:
try:
status = {
'from_state': self.state,
'to_state': self.next_state,
'state': self.state,
'next_state': self.next_state,
'system': {
'free_space': str(self._free_space),
},
Expand Down

0 comments on commit e2f5748

Please sign in to comment.