New issue
Advanced search Search tips
Note: Color blocks (like or ) mean that a user may not be available. Tooltip shows the reason.

Issue 808167 link

Starred by 1 user

Issue metadata

Status: Fixed
Owner:
Closed: Feb 2018
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 1
Type: Bug



Sign in to add a comment

Mac trybots sometimes time out archiving layout test results

Project Member Reported by robertma@chromium.org, Feb 1 2018

Issue description

I tried the mac_chromium_10.13_rel_ng trybot (master: tryserver.chromium.mac) twice. The bot timed out at archive_webkit_tests_results in both tries.

https://ci.chromium.org/buildbot/tryserver.chromium.mac/mac_chromium_10.13_rel_ng/0
https://ci.chromium.org/buildbot/tryserver.chromium.mac/mac_chromium_10.13_rel_ng/1


From the logs, it seems it's the recursive upload that caused problems.
 
Blocking: 774301
Components: -Infra Infra>Client>Chrome
Status: WontFix (was: Untriaged)
This issue seems like gone based on the latest builds 
https://ci.chromium.org/buildbot/tryserver.chromium.mac/mac_chromium_10.13_rel_ng/2
https://ci.chromium.org/buildbot/tryserver.chromium.mac/mac_chromium_10.13_rel_ng/3

Closing this bug. Please reopen it if that happens again. Thanks!
Blocking: -774301
Owner: shenghua...@chromium.org
Status: Untriaged (was: WontFix)
Summary: Mac trybots sometimes time out archiving layout test results (was: mac_chromium_10.13_rel_ng trybot times out archiving layout test results)
Looks like it doesn't always timeout, and it's not limited to the new 10.13 bot.

Here's another example I recently saw:
https://ci.chromium.org/buildbot/tryserver.blink/mac10.10_blink_rel/5857
Cc: martiniss@chromium.org
I ssh-ed onto the bot running https://ci.chromium.org/buildbot/tryserver.chromium.mac/mac_chromium_rel_ng/642715

I ran "dtruss -p <PID>" (dtrace is strace on macs) on one of the process that the gsutil -m cp command had spawned, and got this:
SYSCALL(args) 		 = return
read(0x36, "\200\002U\006#ERRORq\001cQueue\nEmpty\nq\002)Rq\003\206q\004.\0", 0x23)		 = 35 0
write(0x36, "\0", 0x31)		 = 49 0
read(0x36, "\0", 0x4)		 = 4 0
read(0x36, "\200\002U\006#ERRORq\001cQueue\nEmpty\nq\002)Rq\003\206q\004.\0", 0x23)		 = 35 0
write(0x36, "\0", 0x31)		 = 49 0
read(0x36, "\0", 0x4)		 = 4 0
read(0x36, "\200\002U\006#ERRORq\001cQueue\nEmpty\nq\002)Rq\003\206q\004.\0", 0x23)		 = 35 0
write(0x36, "\0", 0x31)		 = 49 0

I don't know syscalls super well, but seeing ERROR Queue Empty in there is strange. So something weird seems to be happening.
Perhaps pyringe (https://github.com/google/pyringe) into the gsutil process?
That doesn't work on mac os as far as I know. gdb isn't installed on our machines, and I don't think we can get python debugging symbols installed on them as well.

Comment 10 by hzl@chromium.org, Feb 2 2018

Is this bug blocking cls to land? If so, should it still be p2?
Cc: hzl@chromium.org
Owner: martiniss@chromium.org
Status: Assigned (was: Untriaged)
Assign it to @martiniss. Please feel free to assign it to anyone more proper. Thanks!
Labels: -Pri-2 Pri-1
It looks like it's blocking cls from landing. I see several CLs on https://ci.chromium.org/buildbot/tryserver.chromium.mac/mac_chromium_rel_ng/ which have long running archive steps.

I'm going to raise it to a P1.
I made a PLX query looking for archive steps that took longer than 10 minutes. http://shortn/_LwYV6ZO2sh

It looks like this has been happening more frequently since the 24th.
I glanced through tools/build and depot_tools git log, and didn't see anything suspicious. Not sure why it's spiking now.

It's also not clear if there's a quick way to solve this. We could turn off this upload, which would solve the problem, but that will have to go through CQ, so existing jobs will fail, and we will lose data.
Also glanced through //third_party/Webkit/Tools, and didn't see anything.

https://ci.chromium.org/buildbot/tryserver.chromium.mac/mac_chromium_rel_ng/620004 which is a build from a month ago has about the same number of files. So something else weird is going on here. It took much less time I think though.

I might just disable uploading layout test results for this builder so that the builder isn't always failing.
I would disable the recursive upload first, before turning off the whole thing. Better a partial upload than none at all, and I'm pretty sure it's the recursive upload that's the problem.


Project Member

Comment 17 by bugdroid1@chromium.org, Feb 7 2018

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/b5b539e2d315322f4ad4414644e45260ed8bce44

commit b5b539e2d315322f4ad4414644e45260ed8bce44
Author: Stephen Martinis <martiniss@chromium.org>
Date: Wed Feb 07 22:47:07 2018

Disable uploading layout test results directory on mac trybot

Bug:  808167 
Change-Id: I6082da6f2872a80f2b034fb468f2dea1d368f95a
Reviewed-on: https://chromium-review.googlesource.com/900343
Commit-Queue: Stephen Martinis <martiniss@chromium.org>
Reviewed-by: Dirk Pranke <dpranke@chromium.org>

[modify] https://crrev.com/b5b539e2d315322f4ad4414644e45260ed8bce44/scripts/slave/chromium/archive_layout_test_results.py

Project Member

Comment 18 by bugdroid1@chromium.org, Feb 8 2018

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/deb9130362ab900eb30c99a452ff95a306181159

commit deb9130362ab900eb30c99a452ff95a306181159
Author: Stephen Martinis <martiniss@chromium.org>
Date: Thu Feb 08 01:30:08 2018

Fix typo in archive layout test script

Python doesn't interpret (x) as a tuple; it ignores the parantheses.
This CL changes it to a list, so that it's checking if a string is in
a list, rather than a string in a string.

The script should still work as is, but is technically incorrect as is.

Bug:  808167 
Change-Id: Ie9ad5c0a0ea49094b59bee821be3551a3849ba0a
Reviewed-on: https://chromium-review.googlesource.com/907696
Reviewed-by: Dirk Pranke <dpranke@chromium.org>
Commit-Queue: Stephen Martinis <martiniss@chromium.org>

[modify] https://crrev.com/deb9130362ab900eb30c99a452ff95a306181159/scripts/slave/chromium/archive_layout_test_results.py

Project Member

Comment 19 by bugdroid1@chromium.org, Feb 8 2018

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/fd1cb48acd7a5531b899d4597b82c7246802f2b3

commit fd1cb48acd7a5531b899d4597b82c7246802f2b3
Author: Stephen Martinis <martiniss@chromium.org>
Date: Thu Feb 08 01:45:48 2018

Use new base url for layout results

Bug:  808167 
Change-Id: Ie93fb1cc28ba16b4ec71c16e4f4e61b75914c503
Reviewed-on: https://chromium-review.googlesource.com/907858
Commit-Queue: Stephen Martinis <martiniss@chromium.org>
Reviewed-by: Dirk Pranke <dpranke@chromium.org>

[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Mac_fail.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/blink_downstream.expected/webkit_tests_interrupted.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Win_fail.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/blink_downstream.expected/minimal_pass_continues.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64__dbg__fail.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/blink_downstream.expected/webkit_tests_unexpected_error.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64_fail.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipe_modules/chromium_tests/tests/steps/generate_isolated_script.expected/custom_webkit_tests_step_name.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64___future_pass.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipe_modules/chromium_tests/tests/steps/blink_test.expected/android.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64__dbg__pass.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipe_modules/chromium_tests/tests/steps/blink_test.expected/unexpected_flakes.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Mac_pass.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64_pass.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64___future_fail.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipe_modules/chromium_tests/tests/steps/blink_test.expected/win.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipe_modules/chromium_tests/steps.py
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/blink_downstream.expected/too_many_failures_for_retcode.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_interrupted.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_unexpected_error.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/chromium_trybot.expected/swarmed_layout_tests_too_many_failures_for_retcode.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipe_modules/chromium_tests/tests/steps/blink_test.expected/big.json
[modify] https://crrev.com/fd1cb48acd7a5531b899d4597b82c7246802f2b3/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Win_pass.json

Project Member

Comment 20 by bugdroid1@chromium.org, Feb 8 2018

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/e0053fac53579a6ccaec10b1947879eadbe10130

commit e0053fac53579a6ccaec10b1947879eadbe10130
Author: Stephen Martinis <martiniss@chromium.org>
Date: Thu Feb 08 18:54:00 2018

Revert "Use new base url for layout results"

This reverts commit fd1cb48acd7a5531b899d4597b82c7246802f2b3.

Reason for revert: Breaks some large results zip files. See https://crbug.com/810427

Original change's description:
> Use new base url for layout results
> 
> Bug:  808167 
> Change-Id: Ie93fb1cc28ba16b4ec71c16e4f4e61b75914c503
> Reviewed-on: https://chromium-review.googlesource.com/907858
> Commit-Queue: Stephen Martinis <martiniss@chromium.org>
> Reviewed-by: Dirk Pranke <dpranke@chromium.org>

TBR=dpranke@chromium.org,martiniss@chromium.org,jbudorick@chromium.org

Change-Id: Id8bf7d445658172d190b3a9f74902ff3f21ac9e0
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug:  808167 , 810427
Reviewed-on: https://chromium-review.googlesource.com/909350
Reviewed-by: Stephen Martinis <martiniss@chromium.org>
Commit-Queue: Stephen Martinis <martiniss@chromium.org>

[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Mac_fail.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/blink_downstream.expected/webkit_tests_interrupted.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Win_fail.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/blink_downstream.expected/minimal_pass_continues.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64__dbg__fail.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/blink_downstream.expected/webkit_tests_unexpected_error.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64_fail.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipe_modules/chromium_tests/tests/steps/generate_isolated_script.expected/custom_webkit_tests_step_name.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64___future_pass.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipe_modules/chromium_tests/tests/steps/blink_test.expected/android.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64__dbg__pass.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipe_modules/chromium_tests/tests/steps/blink_test.expected/unexpected_flakes.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Mac_pass.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64_pass.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64___future_fail.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipe_modules/chromium_tests/tests/steps/blink_test.expected/win.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipe_modules/chromium_tests/steps.py
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/blink_downstream.expected/too_many_failures_for_retcode.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_interrupted.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_unexpected_error.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/chromium_trybot.expected/swarmed_layout_tests_too_many_failures_for_retcode.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipe_modules/chromium_tests/tests/steps/blink_test.expected/big.json
[modify] https://crrev.com/e0053fac53579a6ccaec10b1947879eadbe10130/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Win_pass.json

Project Member

Comment 21 by bugdroid1@chromium.org, Feb 9 2018

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/tools/build/+/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed

commit a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed
Author: Stephen Martinis <martiniss@chromium.org>
Date: Fri Feb 09 22:38:08 2018

Reland "Use new base url for layout results"

This reverts commit e0053fac53579a6ccaec10b1947879eadbe10130.

Reason for revert: Reland now that bugs are fixed.

Original change's description:
> Revert "Use new base url for layout results"
> 
> This reverts commit fd1cb48acd7a5531b899d4597b82c7246802f2b3.
> 
> Reason for revert: Breaks some large results zip files. See https://crbug.com/810427
> 
> Original change's description:
> > Use new base url for layout results
> > 
> > Bug:  808167 
> > Change-Id: Ie93fb1cc28ba16b4ec71c16e4f4e61b75914c503
> > Reviewed-on: https://chromium-review.googlesource.com/907858
> > Commit-Queue: Stephen Martinis <martiniss@chromium.org>
> > Reviewed-by: Dirk Pranke <dpranke@chromium.org>
> 
> TBR=dpranke@chromium.org,martiniss@chromium.org,jbudorick@chromium.org
> 
> Change-Id: Id8bf7d445658172d190b3a9f74902ff3f21ac9e0
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Bug:  808167 , 810427
> Reviewed-on: https://chromium-review.googlesource.com/909350
> Reviewed-by: Stephen Martinis <martiniss@chromium.org>
> Commit-Queue: Stephen Martinis <martiniss@chromium.org>

TBR=dpranke@chromium.org,martiniss@chromium.org,jbudorick@chromium.org

# Not skipping CQ checks because original CL landed > 1 day ago.

Bug:  808167 , 810427
Change-Id: I233644bb10d637b38b8278215fe926891546dc2f
Reviewed-on: https://chromium-review.googlesource.com/911971
Reviewed-by: Stephen Martinis <martiniss@chromium.org>
Commit-Queue: Stephen Martinis <martiniss@chromium.org>

[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Mac_fail.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/blink_downstream.expected/webkit_tests_interrupted.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Win_fail.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/blink_downstream.expected/minimal_pass_continues.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64__dbg__fail.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/blink_downstream.expected/webkit_tests_unexpected_error.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64_fail.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipe_modules/chromium_tests/tests/steps/generate_isolated_script.expected/custom_webkit_tests_step_name.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64___future_pass.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipe_modules/chromium_tests/tests/steps/blink_test.expected/android.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64__dbg__pass.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipe_modules/chromium_tests/tests/steps/blink_test.expected/unexpected_flakes.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Mac_pass.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64_pass.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Linux_64___future_fail.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipe_modules/chromium_tests/tests/steps/blink_test.expected/win.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipe_modules/chromium_tests/steps.py
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/blink_downstream.expected/too_many_failures_for_retcode.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_interrupted.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/chromium_trybot.expected/swarmed_webkit_tests_unexpected_error.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/chromium_trybot.expected/swarmed_layout_tests_too_many_failures_for_retcode.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipe_modules/chromium_tests/tests/steps/blink_test.expected/big.json
[modify] https://crrev.com/a4c27c365d65fbb5a57c2ae2cfec7f152e82cbed/scripts/slave/recipes/blink_downstream.expected/full_client_v8_fyi_V8_Blink_Win_pass.json

Status: Fixed (was: Assigned)
This should be fixed; no more recursive upload!

Sign in to add a comment