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 0b6055f commit b1c1392Copy full SHA for b1c1392
src/appengine/handlers/upload_testcase.py
@@ -392,9 +392,10 @@ def do_post(self):
392
trusted_agreement_signed = request.get(
393
'trustedAgreement') == TRUSTED_AGREEMENT_TEXT.strip()
394
395
- # Chrome is the only ClusterFuzz deployment where there are trusted bots running utasks.
+ # Chrome is the only ClusterFuzz deployment where there are trusted bots
396
+ # running utasks.
397
# This check also fails on oss-fuzz because of the way it abuses platform.
- if (not trusted_agreement_signed and utils.is_chromium() and
398
+ if (not trusted_agreement_signed and utils.is_chromium() and
399
task_utils.is_remotely_executing_utasks() and
400
((platform_id and platform_id != 'Linux') or
401
job.platform.lower() != 'linux')):
0 commit comments