Skip to content

Commit

Permalink
Update task status message
Browse files Browse the repository at this point in the history
  • Loading branch information
jleaniz committed Sep 18, 2024
1 parent 4c4cbc0 commit 1955f51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion turbinia/workers/dfdewey.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def run(self, evidence, result):
result.log(status_summary)
else:
status_summary = (
'Not running dfDewey. Case was not provided in task config.')
'dfDewey will not execute. Case was not provided in task config.')
result.log(status_summary)

result.close(self, success=success, status=status_summary)
Expand Down
2 changes: 1 addition & 1 deletion turbinia/workers/fsstat.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def run(self, evidence, result):
# Since fsstat does not support some filesystems, we won't run it when we
# know the partition is not supported.
elif evidence.path_spec.type_indicator in ("APFS", "XFS"):
message = 'Not running fsstat since partition is not supported'
message = 'Not processing since partition is not supported'
result.log(message)
result.close(self, success=True, status=message)
else:
Expand Down

0 comments on commit 1955f51

Please sign in to comment.