You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
quotaDryRun=flag.Bool("quota_dry_run", false, "If true no requests are blocked due to lack of tokens")
69
70
70
71
treeGCEnabled=flag.Bool("tree_gc", true, "If true, tree garbage collection (hard-deletion) is periodically performed")
71
-
treeDeleteThreshold=flag.Duration("tree_delete_threshold", server.DefaultTreeDeleteThreshold, "Minimum period a tree has to remain deleted before being hard-deleted")
72
-
treeDeleteMinRunInterval=flag.Duration("tree_delete_min_run_interval", server.DefaultTreeDeleteMinInterval, "Minimum interval between tree garbage collection sweeps. Actual runs happen randomly between [minInterval,2*minInterval).")
72
+
treeDeleteThreshold=flag.Duration("tree_delete_threshold", serverutil.DefaultTreeDeleteThreshold, "Minimum period a tree has to remain deleted before being hard-deleted")
73
+
treeDeleteMinRunInterval=flag.Duration("tree_delete_min_run_interval", serverutil.DefaultTreeDeleteMinInterval, "Minimum interval between tree garbage collection sweeps. Actual runs happen randomly between [minInterval,2*minInterval).")
73
74
74
75
tracing=flag.Bool("tracing", false, "If true opencensus Stackdriver tracing will be enabled. See https://opencensus.io/.")
75
76
tracingProjectID=flag.String("tracing_project_id", "", "project ID to pass to stackdriver. Can be empty for GCP, consult docs for other platforms.")
@@ -119,10 +120,10 @@ func main() {
119
120
}
120
121
121
122
// Announce our endpoints to etcd if so configured.
quotaDryRun=flag.Bool("quota_dry_run", false, "If true no requests are blocked due to lack of tokens")
65
66
66
67
treeGCEnabled=flag.Bool("tree_gc", true, "If true, tree garbage collection (hard-deletion) is periodically performed")
67
-
treeDeleteThreshold=flag.Duration("tree_delete_threshold", server.DefaultTreeDeleteThreshold, "Minimum period a tree has to remain deleted before being hard-deleted")
68
-
treeDeleteMinRunInterval=flag.Duration("tree_delete_min_run_interval", server.DefaultTreeDeleteMinInterval, "Minimum interval between tree garbage collection sweeps. Actual runs happen randomly between [minInterval,2*minInterval).")
68
+
treeDeleteThreshold=flag.Duration("tree_delete_threshold", serverutil.DefaultTreeDeleteThreshold, "Minimum period a tree has to remain deleted before being hard-deleted")
69
+
treeDeleteMinRunInterval=flag.Duration("tree_delete_min_run_interval", serverutil.DefaultTreeDeleteMinInterval, "Minimum interval between tree garbage collection sweeps. Actual runs happen randomly between [minInterval,2*minInterval).")
69
70
70
71
tracing=flag.Bool("tracing", false, "If true opencensus Stackdriver tracing will be enabled. See https://opencensus.io/.")
71
72
tracingProjectID=flag.String("tracing_project_id", "", "project ID to pass to Stackdriver client. Can be empty for GCP, consult docs for other platforms.")
0 commit comments