Skip to content

Commit

Permalink
Remove noisy deserialization log message (#1155)
Browse files Browse the repository at this point in the history
* Remove noisy deserialization log message

* whitespace
  • Loading branch information
aarontp authored Sep 16, 2022
1 parent d41182e commit 60a7c1f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions turbinia/task_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,8 @@ def task_deserialize(input_dict):
try:
input_dict.pop('output_manager')
except KeyError:
log.info(
'output_manager key not found in serialized TurbiniaTask {}'.format(
input_dict['id']))
pass

task.__dict__.update(input_dict)
task.start_time = datetime.strptime(input_dict['start_time'], DATETIME_FORMAT)
task.last_update = datetime.strptime(
Expand Down

0 comments on commit 60a7c1f

Please sign in to comment.