From d5db61c2471b7cd779ce37deb353e01dc7775b55 Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Sun, 20 Jul 2025 17:16:48 +0200 Subject: [PATCH] Make 2 recently added settings configurable in Docker see #129, #153. --- bugsink/conf_templates/docker.py.template | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bugsink/conf_templates/docker.py.template b/bugsink/conf_templates/docker.py.template index 3a2aa9c..f134ee7 100644 --- a/bugsink/conf_templates/docker.py.template +++ b/bugsink/conf_templates/docker.py.template @@ -159,6 +159,10 @@ BUGSINK = { # Settings that help with debugging and development ("why isn't Bugsink doing what I expect?") "VALIDATE_ON_DIGEST": os.getenv("VALIDATE_ON_DIGEST", "none").lower(), # other legal values are "warn" and "strict" "KEEP_ENVELOPES": int(os.getenv("KEEP_ENVELOPES", 0)), # keep this many in the database; 0 means "don't keep" + + "API_LOG_UNIMPLEMENTED_CALLS": os.getenv("API_LOG_UNIMPLEMENTED_CALLS", "false").lower() in ("true", "1", "yes"), + "KEEP_ARTIFACT_BUNDLES": os.getenv("KEEP_ARTIFACT_BUNDLES", "false").lower() in ("true", "1", "yes"), + "MINIMIZE_INFORMATION_EXPOSURE": os.getenv("MINIMIZE_INFORMATION_EXPOSURE", "false").lower() in ("true", "1", "yes"),