fix(tests): align channel runtime context mutex types
This commit is contained in:
parent
410ece8458
commit
134850733d
@ -5875,7 +5875,7 @@ BTC is currently around $65,000 based on latest tool output."#
|
||||
workspace_dir: Arc::new(std::env::temp_dir()),
|
||||
message_timeout_secs: CHANNEL_MESSAGE_TIMEOUT_SECS,
|
||||
interrupt_on_new_message: false,
|
||||
non_cli_excluded_tools: Arc::new(Vec::new()),
|
||||
non_cli_excluded_tools: Arc::new(Mutex::new(Vec::new())),
|
||||
approval_manager: Arc::new(ApprovalManager::from_config(
|
||||
&crate::config::AutonomyConfig::default(),
|
||||
)),
|
||||
@ -5952,7 +5952,7 @@ BTC is currently around $65,000 based on latest tool output."#
|
||||
workspace_dir: Arc::new(std::env::temp_dir()),
|
||||
message_timeout_secs: CHANNEL_MESSAGE_TIMEOUT_SECS,
|
||||
interrupt_on_new_message: false,
|
||||
non_cli_excluded_tools: Arc::new(Vec::new()),
|
||||
non_cli_excluded_tools: Arc::new(Mutex::new(Vec::new())),
|
||||
approval_manager: Arc::new(ApprovalManager::from_config(
|
||||
&crate::config::AutonomyConfig::default(),
|
||||
)),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user