chore: untrack the local debug config committed in #410 - #464
Merged
Conversation
grob-openai-logged.toml is one operator's local tracing profile — it swaps a specific prod instance on port 13456 and its comments record which models that particular ChatGPT account is entitled to. Its siblings (grob-openai.toml, grob-chatgpt.toml, ...) were all gitignored; this one slipped through because the ignore list enumerated filenames one by one. Replaces the enumeration with a root-anchored /grob-*.toml glob so the next local profile cannot repeat the trick. Committed example configs live in docs/examples/ and deploy/ and are unaffected. The file stays on disk for whoever is using it — only the index entry goes. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
grob-openai-logged.tomlsits at the repo root and is a personal operatorprofile, not project content:
grob -c ./grob-openai.toml stop)("gpt-5.3-codex 400s on this ChatGPT account (not entitled)")
[server.tracing]withomit_system_prompt = falseandencrypt = false, i.e. full request/response bodies in cleartextEvery sibling —
grob-openai.toml,grob-chatgpt.toml,grob-gpt55.toml,grob-codex-proxy.toml,grob-glm52-fireworks.toml— is already gitignored.This one reached main in #410 only because the ignore list enumerated filenames
one at a time and nobody added the new one.
So the fix is both halves:
git rm --cachedthe file (it stays on disk for whoever is using it)/grob-*.tomlglobCommitted example configs live in
docs/examples/anddeploy/and do notmatch the anchored pattern.
Note
No secret is involved — the profile authenticates through OAuth and contains no
key material, so there is nothing to rotate and no history rewrite needed.
🤖 Generated with Claude Code