Skip to content

Commit

Permalink
Clean up external_testcase_reader for testing round 1 (google#4638)
Browse files Browse the repository at this point in the history
removing some of the safeguards to run a prod test
  • Loading branch information
pgrace-google committed Feb 5, 2025
1 parent 5fdca6b commit 48dcf26
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/clusterfuzz/_internal/cron/external_testcase_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ def handle_testcases(tracker, config):
if len(issues) == 0:
return

# TODO(pgrace) Cache in redis.
vrp_uploaders = get_vrp_uploaders(config)

# Rudimentary rate limiting -
Expand All @@ -194,8 +193,7 @@ def handle_testcases(tracker, config):
continue

# Submit valid testcases.
# TODO(pgrace) replace with 0 once testing is complete
attachment_metadata = attachment_metadata[6]
attachment_metadata = attachment_metadata[0]
attachment = tracker.get_attachment(
attachment_metadata['attachmentDataRef']['resourceName'])
submit_testcase(issue.id, attachment, attachment_metadata['filename'],
Expand Down

0 comments on commit 48dcf26

Please sign in to comment.