blob: a278b9935579e797f8a6e7104d896f2628020fa0 [file] [log] [blame]
Otabek Kasimov832d9162020-07-27 19:24:57 -07001# 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
6DEVICE_STATE_NEEDS_REPLACEMENT = 'needs_replacement'
7# Device required manual attention to be fixed
8DEVICE_STATE_NEEDS_MANUAL_REPAIR = 'needs_manual_repair'
Gregory Nisbetd3007d22020-09-02 12:04:07 -07009
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.
13VERIFY_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.
20REPAIR_TIMEOUT_SEC = 2**30