commit | b45592fde7d08bdee282d3d2d0cf4faa55588885 | [log] [tgz] |
---|---|---|
author | Fumitoshi Ukai <ukai@google.com> | Fri Jun 21 02:07:45 2024 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Jun 21 02:07:45 2024 |
tree | f08c0c278a15a465e674cc672950189e78beefc8 | |
parent | 54634ea7b28f7159f5184e897290f0c34ec97a29 [diff] |
siso: partial revert: use grpc.NewClient WithBlock behavior doesn't work with grpc.NewClient? https://ci.chromium.org/ui/p/chromium/builders/build/win-build-perf-developer/1232/overview ``` > INFO 2024-06-20T23:48:19.820383800Z prepare-local-inputs 2478 2.7671ms: <nil> > INFO 2024-06-20T23:48:19.883818900Z step state: remote exec (via reproxy) > WARNING 2024-06-20T23:48:19.886018800Z dial pipe://reproxy.pipe connectivity=TRANSIENT_FAILURE > WARNING 2024-06-21T00:18:19.889120200Z dial pipe://reproxy.pipe connectivity=TRANSIENT_FAILURE > WARNING 2024-06-21T00:48:19.906759500Z dial pipe://reproxy.pipe connectivity=TRANSIENT_FAILURE > INFO 2024-06-21T01:17:51.175555100Z cached=false > INFO 2024-06-21T01:17:51.175555100Z done err=reproxy error: failed to dial pipe://reproxy.pipe: interrupt by signal ``` so, use grpc.DialContext for reproxy. Change-Id: I96d08970f91f029ee0fad671e301943b3184ec84 Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/5644573 Reviewed-by: Junji Watanabe <jwata@google.com> Auto-Submit: Fumitoshi Ukai <ukai@google.com> Commit-Queue: Fumitoshi Ukai <ukai@google.com> Commit-Queue: Junji Watanabe <jwata@google.com> Cr-Commit-Position: refs/heads/main@{#66336}
Welcome to the Chrome Infra repository!
Wondering where to start? Check out General Chrome Infrastructure documentation. In particular, to check out this repo and the rest of the infrastructure code, follow the instructions here. The rest of this page is specific to this repo.
sys.path
modifications.git push origin <updated hash>:deployed
git push
commandIf you've added a new module, run your tests with test.py:
*_test.py
files to this directory.Double-check that your tests are getting picked up when you want them to be: ./test.py test <path-to-package>
.
Tests still not getting picked up by test.py? Double-check to make sure you have __init__.py
files in each directory of your module so Python recognizes it as a package.
The preferred style is PEP8 with two-space indent; that is, the Chromium Python style, except functions use lowercase_with_underscores
. Use yapf (git cl format
) to autoformat new code.