blob: 9c3f1fa3347b245f8600e9e71a6f7654137cdc35 [file] [log] [blame]
# Copyright 2020 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
PYTHON_VERSION_COMPATIBILITY = "PY3"
DEPS = [
"fuchsia/buildbucket_util",
"fuchsia/gerrit",
"fuchsia/git",
"fuchsia/utils",
"recipe_engine/buildbucket",
"recipe_engine/context",
"recipe_engine/json",
"recipe_engine/led",
"recipe_engine/random",
"recipe_engine/raw_io",
"recipe_engine/step",
"recipe_engine/time",
]
from recipe_engine.recipe_api import Property
from recipe_engine.config import Single
PROPERTIES = {
"poll_timeout_secs": Property(
kind=Single((float, int)),
default=None,
help="The total amount of seconds to spend polling before timing out",
),
"poll_interval_secs": Property(
kind=Single((float, int)),
default=5 * 60,
help="The interval at which to poll in seconds",
),
}