commit | 2e663b8b01e09f0abd9d707f958b3db0542c2cbb | [log] [tgz] |
---|---|---|
author | Greg NISBET <gregorynisbet@google.com> | Thu Oct 09 20:01:49 2025 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Oct 09 20:01:49 2025 |
tree | 03c8bf16572674cd2afdb74e535493c24e0e8b5f | |
parent | d048338407b02522a0020f252754168ad71ff3c8 [diff] |
When a device is nil, report an error I think we're panicking in prod because of a missing nil check on this method. Unfortunately, the prod panic includes a big long stack trace that saves the intermediate layers which is mostly framework code not the top or the bottom of the stack. Change-Id: I3da0495f82594c128a68fe7d5a6210c136ab65a2 Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/7028733 Commit-Queue: Gregory Nisbet <gregorynisbet@google.com> Reviewed-by: Tiffany Zhang <zhangtiff@chromium.org> Cr-Commit-Position: refs/heads/main@{#76886}
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.