Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cherry pick: #4610 #4610

Merged
merged 3 commits into from
Jan 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/appengine/handlers/upload_testcase.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,9 @@ def do_post(self):
trusted_agreement_signed = request.get(
'trustedAgreement') == TRUSTED_AGREEMENT_TEXT.strip()

if (not trusted_agreement_signed and
# Chrome is the only ClusterFuzz deployment where there are trusted bots running utasks.
# This check also fails on oss-fuzz because of the way it abuses platform.
if (not trusted_agreement_signed and utils.is_chromium() and
task_utils.is_remotely_executing_utasks() and
((platform_id and platform_id != 'Linux') or
job.platform.lower() != 'linux')):
Expand Down
Loading