From bf424135a5c7eff3029b6c44b5a613f09f99f45e Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Tue, 12 May 2026 23:27:17 +0200 Subject: [PATCH] docs(adr-025): remove duplicate [login_flow] section in TOML example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit 4 renamed `[oauth_single_audience]` → `[login_flow]` via a global sed pass, but ADR-025's example settings.toml already had a `[login_flow]` section just above the `[keycloak]` block. The rename produced two back-to-back `[login_flow]` headers with identical contents — TOML parsers either reject the file or silently override, and a reader copying the example would land on either outcome. Dropped the now-duplicate second `[login_flow]` section (the renamed one). The earlier `[login_flow]` section retains the same content + a comment explaining the ADR-022 derivation, so no information is lost. Co-Authored-By: Claude Opus 4.7 (1M context) --- docs/ADR-025-dynaconf-configuration-management.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/ADR-025-dynaconf-configuration-management.md b/docs/ADR-025-dynaconf-configuration-management.md index b905335f..33defa6c 100644 --- a/docs/ADR-025-dynaconf-configuration-management.md +++ b/docs/ADR-025-dynaconf-configuration-management.md @@ -211,9 +211,6 @@ token_storage_db = "/app/data/tokens.db" enable_token_exchange = true token_storage_db = "/app/data/tokens.db" token_exchange_cache_ttl = 300 - -[login_flow] -token_storage_db = "/app/data/tokens.db" ``` **`.secrets.toml.example`** — Template, checked into git (actual `.secrets.toml` is gitignored):