From 2c930faa5ac1b66d51b781b8c482b4833038f5f5 Mon Sep 17 00:00:00 2001 From: Andy Asp Date: Thu, 3 Feb 2022 16:13:56 -0500 Subject: [PATCH] runtimeconfig: Categorize advanced configuration parameters --- runtimeconfig/manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtimeconfig/manager.go b/runtimeconfig/manager.go index e5da50bc7..a7f29ab8c 100644 --- a/runtimeconfig/manager.go +++ b/runtimeconfig/manager.go @@ -26,7 +26,7 @@ type Loader func(r io.Reader) (interface{}, error) // Config holds the config for an Manager instance. // It holds config related to loading per-tenant config. type Config struct { - ReloadPeriod time.Duration `yaml:"period"` + ReloadPeriod time.Duration `yaml:"period" category:"advanced"` // LoadPath contains the path to the runtime config file, requires an // non-empty value LoadPath string `yaml:"file"`