514377c7cb
A down backend costs a full timeout stall on every request, since fan-out has no way to know before it asks, and the client is never told the answer came from fewer backends than are configured. - poll each backend's status endpoint in the background, one goroutine per backend, with failure/success thresholds so a blip cannot flap it - skip backends the prober has down, and fall open to querying all of them when none is left healthy - treat a not-yet-probed backend as healthy so a restart drops no traffic - log only up/down transitions - stamp merged responses with X-Backends: <contributed>/<configured> - report per-backend probe state and the last round's partiality on /healthz - add health_probe_enabled, health_probe_path, health_probe_interval, health_probe_timeout, health_probe_failures and health_probe_successes, with matching PDBMUX_* env vars and a --health-probe flag
515 lines
16 KiB
Go
515 lines
16 KiB
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
// testConfigValid returns a minimal valid config for Validate/merge tests, with
|
|
// neutral placeholder backends.
|
|
func testConfigValid() Config {
|
|
cfg := DefaultConfig()
|
|
cfg.Backends = []Backend{
|
|
{Name: "a", URL: "http://localhost:18080"},
|
|
{Name: "b", URL: "http://localhost:18081"},
|
|
}
|
|
return cfg
|
|
}
|
|
|
|
func TestDefaultConfig_NoBackends(t *testing.T) {
|
|
cfg := DefaultConfig()
|
|
if cfg.Listen != defaultListen {
|
|
t.Errorf("listen = %q, want %q", cfg.Listen, defaultListen)
|
|
}
|
|
if len(cfg.Backends) != 0 {
|
|
t.Errorf("defaults must not ship backends, got %+v", cfg.Backends)
|
|
}
|
|
if cfg.Merge != mergeFreshness {
|
|
t.Errorf("merge = %q, want %q", cfg.Merge, mergeFreshness)
|
|
}
|
|
if err := cfg.Validate(); err == nil {
|
|
t.Error("defaults alone must not validate: backends are required")
|
|
}
|
|
}
|
|
|
|
func TestLoad_NoBackendsLoadsButFailsValidation(t *testing.T) {
|
|
t.Setenv("XDG_CONFIG_HOME", t.TempDir())
|
|
clearEnv(t)
|
|
|
|
// Load itself must succeed so `config init` / `version` work unconfigured.
|
|
cfg, err := Load("")
|
|
if err != nil {
|
|
t.Fatalf("load: %v", err)
|
|
}
|
|
err = cfg.Validate()
|
|
if err == nil {
|
|
t.Fatal("expected a validation error when no backends are configured")
|
|
}
|
|
if !strings.Contains(err.Error(), envPrefix+"BACKENDS") {
|
|
t.Errorf("error should name the env var to set, got: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestLoad_BackendsKeepConfiguredOrder(t *testing.T) {
|
|
t.Setenv("XDG_CONFIG_HOME", t.TempDir())
|
|
clearEnv(t)
|
|
t.Setenv(envPrefix+"BACKENDS", "a=http://localhost:18080,b=http://localhost:18081")
|
|
|
|
cfg, err := Load("")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if len(cfg.Backends) != 2 || cfg.Backends[0].Name != "a" || cfg.Backends[1].Name != "b" {
|
|
t.Errorf("backends should keep the configured order, got %+v", cfg.Backends)
|
|
}
|
|
if err := cfg.Validate(); err != nil {
|
|
t.Errorf("a bare backend list must validate: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestLoad_FileAndEnvOverride(t *testing.T) {
|
|
dir := t.TempDir()
|
|
t.Setenv("XDG_CONFIG_HOME", dir)
|
|
clearEnv(t)
|
|
|
|
cfgDir := filepath.Join(dir, appName)
|
|
if err := os.MkdirAll(cfgDir, 0o755); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
body := "listen: :9999\nmerge: static\n" +
|
|
"backends:\n - name: a\n url: http://localhost:18080\n - name: b\n url: http://localhost:18081\n"
|
|
if err := os.WriteFile(filepath.Join(cfgDir, configFileName), []byte(body), 0o644); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// env beats file for listen.
|
|
t.Setenv(envPrefix+"LISTEN", "127.0.0.1:1234")
|
|
|
|
cfg, err := Load("")
|
|
if err != nil {
|
|
t.Fatalf("load: %v", err)
|
|
}
|
|
if cfg.Listen != "127.0.0.1:1234" {
|
|
t.Errorf("env should beat file for listen, got %q", cfg.Listen)
|
|
}
|
|
if cfg.Merge != mergeStatic {
|
|
t.Errorf("file override failed: merge=%s", cfg.Merge)
|
|
}
|
|
}
|
|
|
|
func TestApplyEnv_Backends(t *testing.T) {
|
|
cfg := testConfigValid()
|
|
env := map[string]string{
|
|
envPrefix + "BACKENDS": "a=http://a:8080,b=http://b:8080",
|
|
envPrefix + "TIMEOUT": "3s",
|
|
envPrefix + "FRESHNESS_TTL": "45s",
|
|
}
|
|
applyEnv(&cfg, func(k string) string { return env[k] })
|
|
|
|
if len(cfg.Backends) != 2 || cfg.Backends[0].Name != "a" || cfg.Backends[1].URL != "http://b:8080" {
|
|
t.Fatalf("PDBMUX_BACKENDS parse failed: %+v", cfg.Backends)
|
|
}
|
|
if cfg.Timeout != 3*time.Second || cfg.FreshnessTTL != 45*time.Second {
|
|
t.Errorf("duration envs failed: %v %v", cfg.Timeout, cfg.FreshnessTTL)
|
|
}
|
|
}
|
|
|
|
func TestDefaultConfig_HealthProbe(t *testing.T) {
|
|
cfg := DefaultConfig()
|
|
if !cfg.HealthProbe || cfg.HealthProbePath != defaultHealthProbePath {
|
|
t.Errorf("health probe defaults to enabled=%v path=%q, want true %q",
|
|
cfg.HealthProbe, cfg.HealthProbePath, defaultHealthProbePath)
|
|
}
|
|
if cfg.HealthProbeInterval != defaultHealthProbeInterval || cfg.HealthProbeTimeout != defaultHealthProbeTimeout {
|
|
t.Errorf("probe interval/timeout = %v/%v", cfg.HealthProbeInterval, cfg.HealthProbeTimeout)
|
|
}
|
|
if cfg.HealthProbeFailures != defaultHealthProbeFailures || cfg.HealthProbeSuccesses != defaultHealthProbeSuccesses {
|
|
t.Errorf("probe thresholds = %d/%d", cfg.HealthProbeFailures, cfg.HealthProbeSuccesses)
|
|
}
|
|
}
|
|
|
|
func TestApplyEnv_HealthProbe(t *testing.T) {
|
|
cfg := testConfigValid()
|
|
env := map[string]string{
|
|
envPrefix + "HEALTH_PROBE_ENABLED": "false",
|
|
envPrefix + "HEALTH_PROBE_PATH": "/status/v1/simple",
|
|
envPrefix + "HEALTH_PROBE_INTERVAL": "45s",
|
|
envPrefix + "HEALTH_PROBE_TIMEOUT": "2s",
|
|
envPrefix + "HEALTH_PROBE_FAILURES": "5",
|
|
envPrefix + "HEALTH_PROBE_SUCCESSES": "1",
|
|
}
|
|
applyEnv(&cfg, func(k string) string { return env[k] })
|
|
|
|
if cfg.HealthProbe {
|
|
t.Error("PDBMUX_HEALTH_PROBE_ENABLED=false did not disable probing")
|
|
}
|
|
if cfg.HealthProbePath != "/status/v1/simple" {
|
|
t.Errorf("path = %q", cfg.HealthProbePath)
|
|
}
|
|
if cfg.HealthProbeInterval != 45*time.Second || cfg.HealthProbeTimeout != 2*time.Second {
|
|
t.Errorf("interval/timeout = %v/%v", cfg.HealthProbeInterval, cfg.HealthProbeTimeout)
|
|
}
|
|
if cfg.HealthProbeFailures != 5 || cfg.HealthProbeSuccesses != 1 {
|
|
t.Errorf("thresholds = %d/%d", cfg.HealthProbeFailures, cfg.HealthProbeSuccesses)
|
|
}
|
|
}
|
|
|
|
func TestDefaultConfig_SourceFact(t *testing.T) {
|
|
cfg := DefaultConfig()
|
|
if cfg.SourceFact != defaultSourceFact || !cfg.SourceFactEnabled {
|
|
t.Errorf("source fact defaults to %q enabled=%v, want %q enabled=true",
|
|
cfg.SourceFact, cfg.SourceFactEnabled, defaultSourceFact)
|
|
}
|
|
}
|
|
|
|
func TestApplyEnv_SourceFact(t *testing.T) {
|
|
cfg := testConfigValid()
|
|
env := map[string]string{envPrefix + "SOURCE_FACT": "origin_pdb"}
|
|
applyEnv(&cfg, func(k string) string { return env[k] })
|
|
if cfg.SourceFact != "origin_pdb" || !cfg.SourceFactEnabled {
|
|
t.Errorf("name override failed: %q enabled=%v", cfg.SourceFact, cfg.SourceFactEnabled)
|
|
}
|
|
|
|
cfg = testConfigValid()
|
|
env = map[string]string{envPrefix + "SOURCE_FACT_ENABLED": "false"}
|
|
applyEnv(&cfg, func(k string) string { return env[k] })
|
|
if cfg.SourceFactEnabled {
|
|
t.Error("PDBMUX_SOURCE_FACT_ENABLED=false must disable injection")
|
|
}
|
|
|
|
// A junk boolean leaves the default alone rather than disabling silently.
|
|
cfg = testConfigValid()
|
|
env = map[string]string{envPrefix + "SOURCE_FACT_ENABLED": "maybe"}
|
|
applyEnv(&cfg, func(k string) string { return env[k] })
|
|
if !cfg.SourceFactEnabled {
|
|
t.Error("unparseable bool must not change the setting")
|
|
}
|
|
}
|
|
|
|
// A config file omitting the key keeps the default; setting it false wins.
|
|
func TestLoad_SourceFactFileOverride(t *testing.T) {
|
|
dir := t.TempDir()
|
|
t.Setenv("XDG_CONFIG_HOME", dir)
|
|
path := filepath.Join(dir, appName, configFileName)
|
|
if err := os.MkdirAll(filepath.Dir(path), 0o755); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
write := func(body string) Config {
|
|
t.Helper()
|
|
if err := os.WriteFile(path, []byte(body), 0o644); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
cfg, err := Load("")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
return cfg
|
|
}
|
|
|
|
cfg := write("backends:\n - name: a\n url: http://a:8080\n")
|
|
if cfg.SourceFact != defaultSourceFact || !cfg.SourceFactEnabled {
|
|
t.Errorf("omitted keys must keep defaults: %q enabled=%v", cfg.SourceFact, cfg.SourceFactEnabled)
|
|
}
|
|
|
|
cfg = write("backends:\n - name: a\n url: http://a:8080\nsource_fact: origin_pdb\nsource_fact_enabled: false\n")
|
|
if cfg.SourceFact != "origin_pdb" || cfg.SourceFactEnabled {
|
|
t.Errorf("file override failed: %q enabled=%v", cfg.SourceFact, cfg.SourceFactEnabled)
|
|
}
|
|
}
|
|
|
|
func TestValidate(t *testing.T) {
|
|
cases := []struct {
|
|
name string
|
|
mutate func(*Config)
|
|
wantErr bool
|
|
}{
|
|
{"ok", func(*Config) {}, false},
|
|
{"no backends", func(c *Config) { c.Backends = nil }, true},
|
|
{"dup name", func(c *Config) { c.Backends = append(c.Backends, Backend{Name: "a", URL: "x"}) }, true},
|
|
{"missing url", func(c *Config) { c.Backends[0].URL = "" }, true},
|
|
{"bad merge", func(c *Config) { c.Merge = "wrong" }, true},
|
|
{"zero timeout", func(c *Config) { c.Timeout = 0 }, true},
|
|
{"empty source fact while enabled", func(c *Config) { c.SourceFact = "" }, true},
|
|
{"empty source fact while disabled", func(c *Config) { c.SourceFact = ""; c.SourceFactEnabled = false }, false},
|
|
{"empty health probe path", func(c *Config) { c.HealthProbePath = "" }, true},
|
|
{"relative health probe path", func(c *Config) { c.HealthProbePath = "status/v1/services" }, true},
|
|
{"zero health probe interval", func(c *Config) { c.HealthProbeInterval = 0 }, true},
|
|
{"zero health probe timeout", func(c *Config) { c.HealthProbeTimeout = 0 }, true},
|
|
{"zero health probe failures", func(c *Config) { c.HealthProbeFailures = 0 }, true},
|
|
{"zero health probe successes", func(c *Config) { c.HealthProbeSuccesses = 0 }, true},
|
|
{"bad health probe settings while disabled", func(c *Config) {
|
|
c.HealthProbe = false
|
|
c.HealthProbePath, c.HealthProbeInterval, c.HealthProbeFailures = "", 0, 0
|
|
}, false},
|
|
}
|
|
for _, tc := range cases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
cfg := testConfigValid()
|
|
tc.mutate(&cfg)
|
|
err := cfg.Validate()
|
|
if (err != nil) != tc.wantErr {
|
|
t.Fatalf("Validate() err=%v, wantErr=%v", err, tc.wantErr)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestParseBackends(t *testing.T) {
|
|
got := parseBackends("a=http://a, b=http://b ,,broken,c=http://c")
|
|
if len(got) != 3 {
|
|
t.Fatalf("expected 3 valid backends, got %d: %+v", len(got), got)
|
|
}
|
|
if got[0].Name != "a" || got[2].URL != "http://c" {
|
|
t.Errorf("unexpected parse: %+v", got)
|
|
}
|
|
}
|
|
|
|
func TestExampleConfig_IsValidAndNeutral(t *testing.T) {
|
|
cfg := ExampleConfig()
|
|
if err := cfg.Validate(); err != nil {
|
|
t.Fatalf("example config must validate: %v", err)
|
|
}
|
|
for _, b := range cfg.Backends {
|
|
if !strings.Contains(b.URL, "example.com") {
|
|
t.Errorf("example backend %q must use a placeholder host, got %q", b.Name, b.URL)
|
|
}
|
|
}
|
|
}
|
|
|
|
const testConfigBody = "listen: \":9999\"\nmerge: static\n" +
|
|
"backends:\n - name: a\n url: http://localhost:18080\n - name: b\n url: http://localhost:18081\n"
|
|
|
|
func writeConfigFile(t *testing.T, path string) {
|
|
t.Helper()
|
|
if err := os.MkdirAll(filepath.Dir(path), 0o755); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := os.WriteFile(path, []byte(testConfigBody), 0o644); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestLoad_FileOnly(t *testing.T) {
|
|
dir := t.TempDir()
|
|
t.Setenv("XDG_CONFIG_HOME", dir)
|
|
clearEnv(t)
|
|
path := filepath.Join(dir, appName, configFileName)
|
|
writeConfigFile(t, path)
|
|
|
|
cfg, err := Load("")
|
|
if err != nil {
|
|
t.Fatalf("load: %v", err)
|
|
}
|
|
if cfg.Listen != ":9999" || cfg.Merge != mergeStatic || len(cfg.Backends) != 2 {
|
|
t.Errorf("file values not applied: %+v", cfg)
|
|
}
|
|
if cfg.SourcePath() != path {
|
|
t.Errorf("source path = %q, want %q", cfg.SourcePath(), path)
|
|
}
|
|
}
|
|
|
|
func TestLoad_EnvOnly_DefaultPathMissing(t *testing.T) {
|
|
t.Setenv("XDG_CONFIG_HOME", t.TempDir())
|
|
clearEnv(t)
|
|
t.Setenv(envPrefix+"BACKENDS", "a=http://localhost:18080")
|
|
t.Setenv(envPrefix+"LISTEN", "127.0.0.1:1234")
|
|
|
|
cfg, err := Load("")
|
|
if err != nil {
|
|
t.Fatalf("a missing default config file must not be an error: %v", err)
|
|
}
|
|
if cfg.SourcePath() != "" {
|
|
t.Errorf("no file was loaded, source path should be empty, got %q", cfg.SourcePath())
|
|
}
|
|
if cfg.Listen != "127.0.0.1:1234" || len(cfg.Backends) != 1 {
|
|
t.Errorf("env values not applied: %+v", cfg)
|
|
}
|
|
if err := cfg.Validate(); err != nil {
|
|
t.Errorf("env-only config should validate: %v", err)
|
|
}
|
|
}
|
|
|
|
// A mounted config file must load with neither HOME nor XDG_CONFIG_HOME set.
|
|
func TestLoad_ExplicitPath(t *testing.T) {
|
|
mounted := filepath.Join(t.TempDir(), "mounted.yaml")
|
|
writeConfigFile(t, mounted)
|
|
|
|
for _, tc := range []struct {
|
|
name string
|
|
flag string
|
|
env string
|
|
}{
|
|
{"flag", mounted, ""},
|
|
{"env", "", mounted},
|
|
} {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
t.Setenv("XDG_CONFIG_HOME", "")
|
|
t.Setenv("HOME", "")
|
|
clearEnv(t)
|
|
t.Setenv(envConfigPath, tc.env)
|
|
|
|
cfg, err := Load(tc.flag)
|
|
if err != nil {
|
|
t.Fatalf("load: %v", err)
|
|
}
|
|
if cfg.SourcePath() != mounted {
|
|
t.Errorf("source path = %q, want %q", cfg.SourcePath(), mounted)
|
|
}
|
|
if cfg.Listen != ":9999" {
|
|
t.Errorf("listen = %q, want :9999", cfg.Listen)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLoad_ExplicitPathMissingIsError(t *testing.T) {
|
|
missing := filepath.Join(t.TempDir(), "typo.yaml")
|
|
|
|
for _, tc := range []struct {
|
|
name string
|
|
flag string
|
|
env string
|
|
}{
|
|
{"flag", missing, ""},
|
|
{"env", "", missing},
|
|
} {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
t.Setenv("XDG_CONFIG_HOME", t.TempDir())
|
|
clearEnv(t)
|
|
t.Setenv(envConfigPath, tc.env)
|
|
|
|
_, err := Load(tc.flag)
|
|
if err == nil {
|
|
t.Fatal("an explicitly named config file that does not exist must fail loudly")
|
|
}
|
|
if !strings.Contains(err.Error(), missing) {
|
|
t.Errorf("error should name the missing path, got: %v", err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLoad_ExplicitFileStillLosesToEnv(t *testing.T) {
|
|
mounted := filepath.Join(t.TempDir(), "mounted.yaml")
|
|
writeConfigFile(t, mounted)
|
|
t.Setenv("XDG_CONFIG_HOME", t.TempDir())
|
|
clearEnv(t)
|
|
t.Setenv(envConfigPath, mounted)
|
|
t.Setenv(envPrefix+"LISTEN", "127.0.0.1:1234")
|
|
t.Setenv(envPrefix+"MERGE", mergeFreshness)
|
|
|
|
cfg, err := Load("")
|
|
if err != nil {
|
|
t.Fatalf("load: %v", err)
|
|
}
|
|
if cfg.Listen != "127.0.0.1:1234" || cfg.Merge != mergeFreshness {
|
|
t.Errorf("env must beat the file: %+v", cfg)
|
|
}
|
|
if len(cfg.Backends) != 2 {
|
|
t.Errorf("unset env must leave file backends alone: %+v", cfg.Backends)
|
|
}
|
|
}
|
|
|
|
func TestResolveConfigPath_Precedence(t *testing.T) {
|
|
dir := t.TempDir()
|
|
t.Setenv("XDG_CONFIG_HOME", dir)
|
|
clearEnv(t)
|
|
defaultPath := filepath.Join(dir, appName, configFileName)
|
|
|
|
if got, explicit := resolveConfigPath(""); got != defaultPath || explicit {
|
|
t.Errorf("no file anywhere: got %q explicit=%v, want %q false", got, explicit, defaultPath)
|
|
}
|
|
|
|
writeConfigFile(t, defaultPath)
|
|
if got, explicit := resolveConfigPath(""); got != defaultPath || explicit {
|
|
t.Errorf("default search: got %q explicit=%v, want %q false", got, explicit, defaultPath)
|
|
}
|
|
|
|
t.Setenv(envConfigPath, "/from/env.yaml")
|
|
if got, explicit := resolveConfigPath(""); got != "/from/env.yaml" || !explicit {
|
|
t.Errorf("env should beat the search path: got %q explicit=%v", got, explicit)
|
|
}
|
|
if got, explicit := resolveConfigPath("/from/flag.yaml"); got != "/from/flag.yaml" || !explicit {
|
|
t.Errorf("flag should beat env: got %q explicit=%v", got, explicit)
|
|
}
|
|
}
|
|
|
|
func TestConfigSearchPaths_EndsAtSystemDir(t *testing.T) {
|
|
t.Setenv("XDG_CONFIG_HOME", t.TempDir())
|
|
paths := configSearchPaths()
|
|
want := filepath.Join(systemConfigDir, configFileName)
|
|
if len(paths) != 2 || paths[1] != want {
|
|
t.Errorf("search paths = %v, want the system path %q last", paths, want)
|
|
}
|
|
|
|
t.Setenv("XDG_CONFIG_HOME", "")
|
|
t.Setenv("HOME", "")
|
|
if paths := configSearchPaths(); len(paths) != 1 || paths[0] != want {
|
|
t.Errorf("without HOME/XDG the search path should be just %q, got %v", want, paths)
|
|
}
|
|
}
|
|
|
|
func TestPrintConfig_ReportsSource(t *testing.T) {
|
|
dir := t.TempDir()
|
|
t.Setenv("XDG_CONFIG_HOME", dir)
|
|
clearEnv(t)
|
|
|
|
out := captureStdout(t, func() {
|
|
cfg, err := Load("")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
printConfig(cfg)
|
|
})
|
|
if !strings.Contains(out, "none loaded") || !strings.Contains(out, filepath.Join(dir, appName, configFileName)) {
|
|
t.Errorf("config show should report nothing was loaded and what it searched, got:\n%s", out)
|
|
}
|
|
|
|
path := filepath.Join(dir, appName, configFileName)
|
|
writeConfigFile(t, path)
|
|
out = captureStdout(t, func() {
|
|
cfg, err := Load("")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
printConfig(cfg)
|
|
})
|
|
if !strings.Contains(out, path+" (loaded)") {
|
|
t.Errorf("config show should name the loaded file, got:\n%s", out)
|
|
}
|
|
}
|
|
|
|
func captureStdout(t *testing.T, f func()) string {
|
|
t.Helper()
|
|
r, w, err := os.Pipe()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
orig := os.Stdout
|
|
os.Stdout = w
|
|
defer func() { os.Stdout = orig }()
|
|
|
|
f()
|
|
if err := w.Close(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
var buf bytes.Buffer
|
|
if _, err := buf.ReadFrom(r); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
return buf.String()
|
|
}
|
|
|
|
func clearEnv(t *testing.T) {
|
|
t.Helper()
|
|
for _, k := range []string{"CONFIG", "LISTEN", "MERGE", "TIMEOUT", "FRESHNESS_TTL", "FACTS_TTL", "FACTS_CACHE_BYTES", "BACKENDS",
|
|
"HEALTH_PROBE_ENABLED", "HEALTH_PROBE_PATH", "HEALTH_PROBE_INTERVAL", "HEALTH_PROBE_TIMEOUT",
|
|
"HEALTH_PROBE_FAILURES", "HEALTH_PROBE_SUCCESSES"} {
|
|
t.Setenv(envPrefix+k, "")
|
|
}
|
|
}
|