Minidump feature flag: configurable in docker

This commit is contained in:
Klaas van Schelven
2025-11-15 13:38:09 +01:00
parent 661d83bd93
commit 7df7bc7f4d

View File

@@ -179,6 +179,9 @@ BUGSINK = {
os.getenv("MINIMIZE_INFORMATION_EXPOSURE", "false").lower() in ("true", "1", "yes"),
"PHONEHOME": os.getenv("PHONEHOME", "true").lower() in ("true", "1", "yes"),
# Feature flags
"FEATURE_MINIDUMPS": os.getenv("PHONEHOME", "false").lower() in ("true", "1", "yes"),
}