chore: remove unnecessary default_ prefix (#1854)

This prefix is not inline with the other fields on the `ConfigOverrides`
struct.
This commit is contained in:
Michael Bolin
2025-08-05 14:42:49 -07:00
committed by GitHub
parent d365cae077
commit 42bd73e150
5 changed files with 14 additions and 14 deletions

View File

@@ -101,8 +101,8 @@ pub async fn run_main(
codex_linux_sandbox_exe,
base_instructions: None,
include_plan_tool: Some(true),
default_disable_response_storage: cli.oss.then_some(true),
default_show_raw_agent_reasoning: cli.oss.then_some(true),
disable_response_storage: cli.oss.then_some(true),
show_raw_agent_reasoning: cli.oss.then_some(true),
};
// Parse `-c` overrides from the CLI.
let cli_kv_overrides = match cli.config_overrides.parse_overrides() {