diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2022-10-21 20:17:30 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-21 20:17:30 +1100 |
| commit | 5c981e7603b534711a730075d51623e0ff18c6be (patch) | |
| tree | af81f01dd65c763ce4e5e03b9bdd191c503bd955 /internal/configuration/schema/const.go | |
| parent | 9532823a99c93d2ab53624f530742190163418f4 (diff) | |
feat(configuration): comment unnecessary template lines (#4222)
This adjusts the default configuration to mostly include commented configuration.
Diffstat (limited to 'internal/configuration/schema/const.go')
| -rw-r--r-- | internal/configuration/schema/const.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/configuration/schema/const.go b/internal/configuration/schema/const.go index c59b8ffc5..3015c1527 100644 --- a/internal/configuration/schema/const.go +++ b/internal/configuration/schema/const.go @@ -48,13 +48,13 @@ var ErrTLSVersionNotSupported = errors.New("supplied tls version isn't supported const ProfileRefreshDisabled = "disable" const ( - // ProfileRefreshAlways represents a Value for refresh_interval that's the same as 0ms. + // ProfileRefreshAlways represents a value for refresh_interval that's the same as 0ms. ProfileRefreshAlways = "always" - // RefreshIntervalDefault represents the default Value of refresh_interval. + // RefreshIntervalDefault represents the default value of refresh_interval. RefreshIntervalDefault = "5m" - // RefreshIntervalAlways represents the duration Value refresh interval should have if set to always. + // RefreshIntervalAlways represents the duration value refresh interval should have if set to always. RefreshIntervalAlways = 0 * time.Millisecond ) |
