We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01239a0 commit a6cffd4Copy full SHA for a6cffd4
src/appengine/handlers/upload_testcase.py
@@ -392,7 +392,9 @@ def do_post(self):
392
trusted_agreement_signed = request.get(
393
'trustedAgreement') == TRUSTED_AGREEMENT_TEXT.strip()
394
395
- if (not trusted_agreement_signed and
+ # Chrome is the only ClusterFuzz deployment where there are trusted bots running utasks.
396
+ # This check also fails on oss-fuzz because of the way it abuses platform.
397
+ if (not trusted_agreement_signed and utils.is_chromium() and
398
task_utils.is_remotely_executing_utasks() and
399
((platform_id and platform_id != 'Linux') or
400
job.platform.lower() != 'linux')):
0 commit comments