Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: appengine/swarming/proto/config.proto

Issue 1926443003: swarming: read configs from luci-config (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: unlint Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The LUCI Authors. All rights reserved.
2 // Use of this source code is governed by the Apache v2.0 license that can be
3 // found in the LICENSE file.
4
5 syntax = "proto2";
6
7 // Schema for settings.cfg service config file in luci-config.
8 message SettingsCfg {
9 // id to inject into pages if applicable.
10 optional string google_analytics = 1;
11
12 // The number of seconds an old task can be deduped from.
13 optional int32 reusable_task_age_secs = 2;
14
15 // The amount of time that has to pass before a machine is considered dead.
16 optional int32 bot_death_timeout_secs = 3;
17
18 // Enable ts_mon based monitoring.
19 optional bool enable_ts_monitoring = 4;
20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698