Skip to content

Commit

Permalink
Use correct proto field name (#4240)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmetzman committed Sep 15, 2024
1 parent 27a1227 commit 1a693f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/clusterfuzz/_internal/bot/untrusted_runner/tasks_host.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"""Tasks host."""

import datetime
import os

from google.protobuf import wrappers_pb2
import grpc
Expand Down Expand Up @@ -86,7 +87,7 @@ def do_corpus_pruning(uworker_input, context, revision):
crash_type=crash.crash_type,
crash_address=crash.crash_address,
crash_stacktrace=crash.crash_stacktrace,
unit_path=crash.unit_path,
unit_name=os.path.basename(crash.unit_path),
security_flag=crash.security_flag,
) for crash in response.crashes
]
Expand Down

0 comments on commit 1a693f3

Please sign in to comment.