Otabek Kasimov | 832d916 | 2020-07-27 19:24:57 -0700 | [diff] [blame] | 1 | # Copyright (c) 2020 The Chromium OS Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | # Device is not fixable due issues with hardware and has to be replaced |
| 6 | DEVICE_STATE_NEEDS_REPLACEMENT = 'needs_replacement' |
| 7 | # Device required manual attention to be fixed |
| 8 | DEVICE_STATE_NEEDS_MANUAL_REPAIR = 'needs_manual_repair' |
Gregory Nisbet | d3007d2 | 2020-09-02 12:04:07 -0700 | [diff] [blame^] | 9 | |
| 10 | # Default timeout for all verifiers |
| 11 | # In order to avoid altering the behavior of the verifiers, set an extremely |
| 12 | # large timeout. The number must be large, but still fit in a C int. |
| 13 | VERIFY_TIMEOUT_SEC = 2**30 |
| 14 | |
| 15 | # Default timeout for all repair actions |
| 16 | # Default timeout for all verifiers |
| 17 | # In order to avoid altering the behavior of the repair actions, |
| 18 | # set an extremely large timeout. The number mut be large, |
| 19 | # but still fit in a C int. |
| 20 | REPAIR_TIMEOUT_SEC = 2**30 |