mirror of
https://github.com/openai/codex.git
synced 2026-05-03 04:42:20 +03:00
Enable tui_app_server feature by default (#15661)
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
use crate::bottom_pane::FeedbackAudience;
|
||||
use crate::status::StatusAccountDisplay;
|
||||
use codex_app_server_client::AppServerClient;
|
||||
use codex_app_server_client::AppServerEvent;
|
||||
use codex_app_server_client::AppServerRequestHandle;
|
||||
@@ -84,10 +86,6 @@ use color_eyre::eyre::Result;
|
||||
use color_eyre::eyre::WrapErr;
|
||||
use std::collections::HashMap;
|
||||
use std::path::PathBuf;
|
||||
use tracing::debug;
|
||||
|
||||
use crate::bottom_pane::FeedbackAudience;
|
||||
use crate::status::StatusAccountDisplay;
|
||||
|
||||
pub(crate) struct AppServerBootstrap {
|
||||
pub(crate) account_auth_mode: Option<AuthMode>,
|
||||
@@ -258,8 +256,8 @@ impl AppServerSession {
|
||||
.await
|
||||
{
|
||||
Ok(rate_limits) => app_server_rate_limit_snapshots_to_core(rate_limits),
|
||||
Err(error) => {
|
||||
debug!(error = ?error, "failed to fetch rate limits during TUI bootstrap");
|
||||
Err(err) => {
|
||||
tracing::warn!("account/rateLimits/read failed during TUI bootstrap: {err}");
|
||||
Vec::new()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user