mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-07-26 14:35:22 +08:00
67e074c0a7
* style(frontend): reformat provider forms, constants and hooks
Apply prettier formatting across 5 frontend files. No logic changes.
Changed files:
- AddProviderDialog.tsx: reformat generic type annotation and callback
- ClaudeFormFields.tsx: consolidate multi-line useState and Collapsible props
- CodexConfigSections.tsx: expand single-line React imports to multi-line,
collapse removeCodexTopLevelField() call
- constants.ts: merge TemplateType into single line
- useSkills.ts: expand single-line TanStack Query imports to multi-line,
reformat uninstallSkill mutationFn chain
* deps(proxy): add hyper ecosystem crates and manual decompression libs
reqwest internally normalizes all header names to lowercase and does not
preserve insertion order, causing proxied requests to differ from the
original client requests. To achieve transparent header forwarding with
original casing and order, introduce lower-level hyper HTTP client libs.
New dependencies:
- hyper-util 0.1: TokioExecutor + legacy Client with
preserve_header_case support for HTTP/1.1
- hyper-rustls 0.27: rustls-based TLS connector for hyper
- http 1 / http-body 1 / http-body-util 0.1: HTTP type crates for
hyper 1.x request/response construction
- flate2 1: manual gzip/deflate decompression (replaces reqwest auto)
- brotli 7: manual brotli decompression
Changed dependencies:
- serde_json: enable preserve_order feature to keep JSON field order
- reqwest: drop gzip feature to prevent reqwest from overriding the
client's original accept-encoding header
* refactor(proxy): use hyper client for header-case preserving forwarding
Previously the proxy used reqwest for all upstream requests. reqwest
normalizes header names to lowercase and reorders them internally,
making proxied requests distinguishable from direct CLI requests.
Some upstream providers are sensitive to these differences.
This commit replaces reqwest with a hyper-based HTTP client on the
default (non-proxy) path, achieving wire-level header fidelity:
Server layer (server.rs):
- Replace axum::serve with a manual hyper HTTP/1.1 accept loop
- Enable preserve_header_case(true) so incoming header casing is
captured in a HeaderCaseMap extension on each request
- Bridge hyper requests to axum Router via tower::Service
New hyper client module (hyper_client.rs):
- Lazy-initialized hyper-util Client with preserve_header_case
- ProxyResponse enum wrapping both hyper::Response and reqwest::Response
behind a unified interface (status, headers, bytes, bytes_stream)
- send_request() builds requests with ordered HeaderMap + case map
Request handlers (handlers.rs):
- Switch from (HeaderMap, Json<Value>) extractors to raw
axum::extract::Request to preserve Extensions (containing the
HeaderCaseMap from the accept loop)
- Pass extensions through the forwarding chain
Forwarder (forwarder.rs):
- Remove HEADER_BLACKLIST array; replace with ordered header iteration
that preserves original header sequence and casing
- Build ordered_headers by iterating client headers, skipping only
auth/host/content-length, and inserting auth headers at the original
authorization position to maintain order
- Handle anthropic-beta (ensure claude-code-20250219 tag) and
anthropic-version (passthrough or default) inline during iteration
- Remove should_force_identity_encoding() — accept-encoding is now
transparently forwarded to upstream
- Use hyper client by default; fall back to reqwest only when an
HTTP/SOCKS5 proxy tunnel is configured
Provider adapters (adapter.rs, claude.rs, codex.rs, gemini.rs):
- Replace add_auth_headers(RequestBuilder) -> RequestBuilder with
get_auth_headers(AuthInfo) -> Vec<(HeaderName, HeaderValue)>
- Adapters now return header pairs instead of mutating a reqwest builder
- Claude adapter: merge Anthropic/ClaudeAuth/Bearer into single branch;
move Copilot fingerprint headers into get_auth_headers
Response processing (response_processor.rs):
- Add manual decompression (gzip/deflate/brotli via flate2 + brotli)
for non-streaming responses, since reqwest auto-decompression is now
disabled to allow accept-encoding passthrough
- Add compressed-SSE warning log for streaming responses
- Accept ProxyResponse instead of reqwest::Response
HTTP client (http_client.rs):
- Disable reqwest auto-decompression (.no_gzip/.no_brotli/.no_deflate)
on both global and per-provider clients
Streaming adapters (streaming.rs, streaming_responses.rs):
- Generalize stream error type from reqwest::Error to generic E: Error
Misc:
- log_codes.rs: add SRV-005 (ACCEPT_ERR) and SRV-006 (CONN_ERR)
- stream_check.rs: reformat copilot header lines
- transform.rs: fix trailing whitespace alignment
* fix(lint): resolve 35 clippy warnings across Rust codebase
Fix all clippy warnings reported by `cargo clippy --lib`:
- codex_config.rs: fix doc_overindented_list_items (3 spaces -> 2)
- commands/copilot.rs: inline format args in 2 log::error! calls
- commands/provider.rs: inline format args in 3 map_err closures
- proxy/hyper_client.rs: inline format arg in log::debug! call
- proxy/providers/copilot_auth.rs: inline format args in 16 locations
(log macros, format! in headers, error constructors)
- proxy/thinking_optimizer.rs: inline format args in 2 log::info! calls
- services/skill.rs: inline format args in log::debug! call
- services/webdav_sync.rs: inline format args in 6 format! calls
(version compat messages, download limit messages)
- services/webdav_sync/archive.rs: inline format args in 2 format! calls
- session_manager/providers/opencode.rs: inline format args in
source_path format!
All fixes use the clippy::uninlined_format_args suggestion pattern:
format!("msg: {}", var) -> format!("msg: {var}")
* deps(proxy): add raw HTTP write and native TLS cert dependencies
Add crates required for the raw TCP/TLS write path that bypasses
hyper's header encoder to preserve original header name casing:
- httparse: parse raw TCP peek bytes to capture header casings
- tokio-rustls + rustls: direct TLS connections for raw write path
- webpki-roots: Mozilla CA bundle baseline
- rustls-native-certs: load system keychain CAs (trusts proxy MITM
certificates from Clash, mitmproxy, etc.)
* fix(proxy): address code review feedback on response handling
Fixes from PR #1714 code review:
- Extract `read_decoded_body()` and `strip_entity_headers_for_rebuilt_body()`
in response_processor to properly clean content-encoding/content-length
headers after decompression
- Reuse `read_decoded_body()` in handlers.rs for Claude transform path,
ensuring compressed responses are decoded before format conversion
- Make `build_proxy_url_from_config()` public so forwarder can pass proxy
URL to the hyper raw write path
- Add `has_system_proxy_env()` utility with test coverage
- Add 50ms backoff after accept() failures in server.rs to prevent
tight-loop CPU spin on transient socket errors
* feat(proxy): implement raw TCP/TLS write with HTTP CONNECT tunnel
Rewrite hyper_client with a two-tier strategy for header case preservation:
Primary path (raw write):
- Peek raw TCP bytes in server.rs to capture OriginalHeaderCases before
hyper lowercases them
- Build raw HTTP/1.1 request bytes with exact original header name casing
- Write directly to TLS stream, then use WriteFilter to let hyper parse
the response while discarding its duplicate request writes
- Support HTTP CONNECT tunneling through upstream proxies, so header case
is preserved even when a proxy (Clash, V2Ray) is configured
Fallback path (hyper-util Client):
- Used when OriginalHeaderCases is empty or raw write fails
- Configured with title_case_headers(true) for best-effort casing
TLS improvements:
- Load native system certificates alongside webpki roots so proxy MITM
CAs (installed in system keychain) are trusted through CONNECT tunnels
Key types added:
- OriginalHeaderCases: maps lowercase name → original wire-casing bytes
- WriteFilter<S>: AsyncRead+AsyncWrite wrapper that discards writes
- connect_via_proxy(): HTTP CONNECT tunnel establishment
- ExtensionDebugMarker: diagnostic marker for extension chain debugging
* refactor(proxy): route requests through hyper with proxy-aware forwarding
Rework forwarder request dispatch to always prefer the hyper raw write
path (header case preservation) over reqwest:
Request routing:
- HTTP/HTTPS proxy: hyper raw write through CONNECT tunnel (case preserved)
- SOCKS5 proxy: reqwest fallback (CONNECT not supported for SOCKS5)
- No proxy: hyper raw write direct connection
Header handling improvements:
- Replace host header in-place at original position instead of
skip-and-append, preserving client's header ordering
- Preserve client's original accept-encoding for transparent passthrough;
only force identity encoding when transform path needs decompression
- Add should_force_identity_encoding() to centralize the decision
- Remove hardcoded 'br, gzip, deflate' override that masked client values
Proxy URL resolution (priority order):
1. Provider-specific proxy config (if enabled)
2. Global proxy URL configured in CC Switch
3. Direct connection (no proxy)
* chore(proxy): remove dead code, redundant tests and debug scaffolding
- Inline should_force_identity_encoding() (was just `needs_transform`)
and delete its 5 test cases
- Remove ExtensionDebugMarker diagnostic type
- Remove unused has_system_proxy_env() and its test
- Remove strip_entity_headers test
- Simplify hyper path: remove redundant is_socks_proxy ternary
- Update hyper_client module doc to reflect CONNECT tunnel support
* fix(proxy): block direct-connect fallback and complete CONNECT tunnel support
* feat(hooks): improve proxy requirement warnings with specific reasons
- Remove redundant OpenAI format hint toast messages
- Add detailed reason detection for proxy requirements (OpenAI Chat, OpenAI Responses, full URL mode)
- Update i18n files with new reason-specific keys
* style(*): format code with prettier
- Remove extra whitespace in http_client.rs
- Fix formatting issues in useProviderActions.ts
* fix(proxy): post-merge fixes for forward return type and clippy warnings
- Restore forward() return type to (ProxyResponse, Option<String>)
to pass claude_api_format through to callers
- Inline format args in log::warn! macro (clippy::uninlined_format_args)
- Suppress too_many_arguments for check_claude_stream
* refactor(proxy): preserve original header wire order and add non-streaming body timeout
- Rewrite build_raw_request to emit headers in original
client-sent sequence instead of hash-map order
- Remove unused OriginalHeaderCases::get_all method
- Add body_timeout to read_decoded_body to prevent
requests hanging when upstream stalls after headers
358 lines
14 KiB
Rust
358 lines
14 KiB
Rust
//! HTTP代理服务器
|
||
//!
|
||
//! 基于Axum的HTTP服务器,处理代理请求
|
||
//!
|
||
//! Uses a manual hyper HTTP/1.1 accept loop with `preserve_header_case(true)` so
|
||
//! that the original header-name casing from the CLI client is captured in a
|
||
//! `HeaderCaseMap` extension. This map is later forwarded to the upstream via
|
||
//! the hyper-based HTTP client, producing wire-level header casing identical to
|
||
//! a direct (non-proxied) CLI request.
|
||
|
||
use super::{
|
||
failover_switch::FailoverSwitchManager, handlers, log_codes::srv as log_srv,
|
||
provider_router::ProviderRouter, types::*, ProxyError,
|
||
};
|
||
use crate::database::Database;
|
||
use axum::{
|
||
extract::DefaultBodyLimit,
|
||
routing::{get, post},
|
||
Router,
|
||
};
|
||
use hyper_util::rt::TokioIo;
|
||
use std::net::SocketAddr;
|
||
use std::sync::Arc;
|
||
use tokio::sync::{oneshot, RwLock};
|
||
use tokio::task::JoinHandle;
|
||
use tower_http::cors::{Any, CorsLayer};
|
||
|
||
/// 代理服务器状态(共享)
|
||
#[derive(Clone)]
|
||
pub struct ProxyState {
|
||
pub db: Arc<Database>,
|
||
pub config: Arc<RwLock<ProxyConfig>>,
|
||
pub status: Arc<RwLock<ProxyStatus>>,
|
||
pub start_time: Arc<RwLock<Option<std::time::Instant>>>,
|
||
/// 每个应用类型当前使用的 provider (app_type -> (provider_id, provider_name))
|
||
pub current_providers: Arc<RwLock<std::collections::HashMap<String, (String, String)>>>,
|
||
/// 共享的 ProviderRouter(持有熔断器状态,跨请求保持)
|
||
pub provider_router: Arc<ProviderRouter>,
|
||
/// AppHandle,用于发射事件和更新托盘菜单
|
||
pub app_handle: Option<tauri::AppHandle>,
|
||
/// 故障转移切换管理器
|
||
pub failover_manager: Arc<FailoverSwitchManager>,
|
||
}
|
||
|
||
/// 代理HTTP服务器
|
||
pub struct ProxyServer {
|
||
config: ProxyConfig,
|
||
state: ProxyState,
|
||
shutdown_tx: Arc<RwLock<Option<oneshot::Sender<()>>>>,
|
||
/// 服务器任务句柄,用于等待服务器实际关闭
|
||
server_handle: Arc<RwLock<Option<JoinHandle<()>>>>,
|
||
}
|
||
|
||
impl ProxyServer {
|
||
pub fn new(
|
||
config: ProxyConfig,
|
||
db: Arc<Database>,
|
||
app_handle: Option<tauri::AppHandle>,
|
||
) -> Self {
|
||
// 创建共享的 ProviderRouter(熔断器状态将跨所有请求保持)
|
||
let provider_router = Arc::new(ProviderRouter::new(db.clone()));
|
||
// 创建故障转移切换管理器
|
||
let failover_manager = Arc::new(FailoverSwitchManager::new(db.clone()));
|
||
|
||
let state = ProxyState {
|
||
db,
|
||
config: Arc::new(RwLock::new(config.clone())),
|
||
status: Arc::new(RwLock::new(ProxyStatus::default())),
|
||
start_time: Arc::new(RwLock::new(None)),
|
||
current_providers: Arc::new(RwLock::new(std::collections::HashMap::new())),
|
||
provider_router,
|
||
app_handle,
|
||
failover_manager,
|
||
};
|
||
|
||
Self {
|
||
config,
|
||
state,
|
||
shutdown_tx: Arc::new(RwLock::new(None)),
|
||
server_handle: Arc::new(RwLock::new(None)),
|
||
}
|
||
}
|
||
|
||
pub async fn start(&self) -> Result<ProxyServerInfo, ProxyError> {
|
||
// 检查是否已在运行
|
||
if self.shutdown_tx.read().await.is_some() {
|
||
return Err(ProxyError::AlreadyRunning);
|
||
}
|
||
|
||
let addr: SocketAddr =
|
||
format!("{}:{}", self.config.listen_address, self.config.listen_port)
|
||
.parse()
|
||
.map_err(|e| ProxyError::BindFailed(format!("无效的地址: {e}")))?;
|
||
|
||
// 创建关闭通道
|
||
let (shutdown_tx, shutdown_rx) = oneshot::channel();
|
||
|
||
// 构建路由
|
||
let app = self.build_router();
|
||
|
||
// 绑定监听器
|
||
let listener = tokio::net::TcpListener::bind(&addr)
|
||
.await
|
||
.map_err(|e| ProxyError::BindFailed(e.to_string()))?;
|
||
|
||
log::info!("[{}] 代理服务器启动于 {addr}", log_srv::STARTED);
|
||
|
||
// 更新全局代理端口,用于系统代理检测
|
||
crate::proxy::http_client::set_proxy_port(self.config.listen_port);
|
||
|
||
// 保存关闭句柄
|
||
*self.shutdown_tx.write().await = Some(shutdown_tx);
|
||
|
||
// 更新状态
|
||
let mut status = self.state.status.write().await;
|
||
status.running = true;
|
||
status.address = self.config.listen_address.clone();
|
||
status.port = self.config.listen_port;
|
||
drop(status);
|
||
|
||
// 记录启动时间
|
||
*self.state.start_time.write().await = Some(std::time::Instant::now());
|
||
|
||
// 启动服务器 — 使用手动 hyper HTTP/1.1 accept loop
|
||
// 开启 preserve_header_case 以捕获客户端请求头的原始大小写
|
||
let state = self.state.clone();
|
||
let handle = tokio::spawn(async move {
|
||
let mut shutdown_rx = shutdown_rx;
|
||
loop {
|
||
tokio::select! {
|
||
result = listener.accept() => {
|
||
let (stream, _remote_addr) = match result {
|
||
Ok(v) => v,
|
||
Err(e) => {
|
||
log::error!("[{SRV}] accept 失败: {e}", SRV = log_srv::ACCEPT_ERR);
|
||
tokio::time::sleep(std::time::Duration::from_millis(50)).await;
|
||
continue;
|
||
}
|
||
};
|
||
|
||
let app = app.clone();
|
||
tokio::spawn(async move {
|
||
// Peek raw TCP bytes to capture original header casing
|
||
// before hyper parses (and lowercases) the header names.
|
||
let original_cases = {
|
||
let mut peek_buf = vec![0u8; 8192];
|
||
match stream.peek(&mut peek_buf).await {
|
||
Ok(n) => {
|
||
let cases = super::hyper_client::OriginalHeaderCases::from_raw_bytes(&peek_buf[..n]);
|
||
log::debug!(
|
||
"[ProxyServer] Peeked {} bytes, captured {} header casings",
|
||
n, cases.cases.len()
|
||
);
|
||
cases
|
||
}
|
||
Err(e) => {
|
||
log::debug!("[ProxyServer] peek failed (non-fatal): {e}");
|
||
super::hyper_client::OriginalHeaderCases::default()
|
||
}
|
||
}
|
||
};
|
||
|
||
// service_fn 将 axum Router(tower::Service)桥接到 hyper
|
||
let service = hyper::service::service_fn(move |req: hyper::Request<hyper::body::Incoming>| {
|
||
let mut router = app.clone();
|
||
let cases = original_cases.clone();
|
||
async move {
|
||
// 将 hyper::body::Incoming 转为 axum::body::Body,保留 extensions
|
||
let (mut parts, body) = req.into_parts();
|
||
|
||
// Insert our own header case map alongside hyper's internal one
|
||
parts.extensions.insert(cases);
|
||
|
||
let body = axum::body::Body::new(body);
|
||
let axum_req = http::Request::from_parts(parts, body);
|
||
<Router as tower::Service<http::Request<axum::body::Body>>>::call(&mut router, axum_req).await
|
||
}
|
||
});
|
||
|
||
if let Err(e) = hyper::server::conn::http1::Builder::new()
|
||
.preserve_header_case(true)
|
||
.serve_connection(TokioIo::new(stream), service)
|
||
.await
|
||
{
|
||
// Connection reset / broken pipe 等在代理场景下很常见,debug 级别
|
||
log::debug!("[{SRV}] connection error: {e}", SRV = log_srv::CONN_ERR);
|
||
}
|
||
});
|
||
}
|
||
_ = &mut shutdown_rx => {
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
|
||
// 服务器停止后更新状态
|
||
state.status.write().await.running = false;
|
||
*state.start_time.write().await = None;
|
||
});
|
||
|
||
// 保存服务器任务句柄
|
||
*self.server_handle.write().await = Some(handle);
|
||
|
||
Ok(ProxyServerInfo {
|
||
address: self.config.listen_address.clone(),
|
||
port: self.config.listen_port,
|
||
started_at: chrono::Utc::now().to_rfc3339(),
|
||
})
|
||
}
|
||
|
||
pub async fn stop(&self) -> Result<(), ProxyError> {
|
||
// 1. 发送关闭信号
|
||
if let Some(tx) = self.shutdown_tx.write().await.take() {
|
||
let _ = tx.send(());
|
||
} else {
|
||
return Err(ProxyError::NotRunning);
|
||
}
|
||
|
||
// 2. 等待服务器任务结束(带 5 秒超时保护)
|
||
if let Some(handle) = self.server_handle.write().await.take() {
|
||
match tokio::time::timeout(std::time::Duration::from_secs(5), handle).await {
|
||
Ok(Ok(())) => {
|
||
log::info!("[{}] 代理服务器已完全停止", log_srv::STOPPED);
|
||
Ok(())
|
||
}
|
||
Ok(Err(e)) => {
|
||
log::warn!("[{}] 代理服务器任务异常终止: {e}", log_srv::TASK_ERROR);
|
||
Err(ProxyError::StopFailed(e.to_string()))
|
||
}
|
||
Err(_) => {
|
||
log::warn!(
|
||
"[{}] 代理服务器停止超时(5秒),强制继续",
|
||
log_srv::STOP_TIMEOUT
|
||
);
|
||
Err(ProxyError::StopTimeout)
|
||
}
|
||
}
|
||
} else {
|
||
Ok(())
|
||
}
|
||
}
|
||
|
||
pub async fn get_status(&self) -> ProxyStatus {
|
||
let mut status = self.state.status.read().await.clone();
|
||
|
||
// 计算运行时间
|
||
if let Some(start) = *self.state.start_time.read().await {
|
||
status.uptime_seconds = start.elapsed().as_secs();
|
||
}
|
||
|
||
// 从 current_providers HashMap 获取每个应用类型当前正在使用的 provider
|
||
let current_providers = self.state.current_providers.read().await;
|
||
status.active_targets = current_providers
|
||
.iter()
|
||
.map(|(app_type, (provider_id, provider_name))| ActiveTarget {
|
||
app_type: app_type.clone(),
|
||
provider_id: provider_id.clone(),
|
||
provider_name: provider_name.clone(),
|
||
})
|
||
.collect();
|
||
|
||
status
|
||
}
|
||
|
||
/// 更新某个应用类型当前“目标供应商”(用于 UI 展示 active_targets)
|
||
///
|
||
/// 注意:这不代表该供应商一定已经处理过请求,而是用于“热切换/启用故障转移立即切 P1”
|
||
/// 等场景下,让 UI 能立刻反映最新目标。
|
||
pub async fn set_active_target(&self, app_type: &str, provider_id: &str, provider_name: &str) {
|
||
let mut current_providers = self.state.current_providers.write().await;
|
||
current_providers.insert(
|
||
app_type.to_string(),
|
||
(provider_id.to_string(), provider_name.to_string()),
|
||
);
|
||
}
|
||
|
||
fn build_router(&self) -> Router {
|
||
let cors = CorsLayer::new()
|
||
.allow_origin(Any)
|
||
.allow_methods(Any)
|
||
.allow_headers(Any);
|
||
|
||
Router::new()
|
||
// 健康检查
|
||
.route("/health", get(handlers::health_check))
|
||
.route("/status", get(handlers::get_status))
|
||
// Claude API (支持带前缀和不带前缀两种格式)
|
||
.route("/v1/messages", post(handlers::handle_messages))
|
||
.route("/claude/v1/messages", post(handlers::handle_messages))
|
||
// OpenAI Chat Completions API (Codex CLI,支持带前缀和不带前缀)
|
||
.route("/chat/completions", post(handlers::handle_chat_completions))
|
||
.route(
|
||
"/v1/chat/completions",
|
||
post(handlers::handle_chat_completions),
|
||
)
|
||
.route(
|
||
"/v1/v1/chat/completions",
|
||
post(handlers::handle_chat_completions),
|
||
)
|
||
.route(
|
||
"/codex/v1/chat/completions",
|
||
post(handlers::handle_chat_completions),
|
||
)
|
||
// OpenAI Responses API (Codex CLI,支持带前缀和不带前缀)
|
||
.route("/responses", post(handlers::handle_responses))
|
||
.route("/v1/responses", post(handlers::handle_responses))
|
||
.route("/v1/v1/responses", post(handlers::handle_responses))
|
||
.route("/codex/v1/responses", post(handlers::handle_responses))
|
||
// OpenAI Responses Compact API (Codex CLI 远程压缩,透传)
|
||
.route(
|
||
"/responses/compact",
|
||
post(handlers::handle_responses_compact),
|
||
)
|
||
.route(
|
||
"/v1/responses/compact",
|
||
post(handlers::handle_responses_compact),
|
||
)
|
||
.route(
|
||
"/v1/v1/responses/compact",
|
||
post(handlers::handle_responses_compact),
|
||
)
|
||
.route(
|
||
"/codex/v1/responses/compact",
|
||
post(handlers::handle_responses_compact),
|
||
)
|
||
// Gemini API (支持带前缀和不带前缀)
|
||
.route("/v1beta/*path", post(handlers::handle_gemini))
|
||
.route("/gemini/v1beta/*path", post(handlers::handle_gemini))
|
||
// 提高默认请求体大小限制(避免 413 Payload Too Large)
|
||
.layer(DefaultBodyLimit::max(200 * 1024 * 1024))
|
||
.layer(cors)
|
||
.with_state(self.state.clone())
|
||
}
|
||
|
||
/// 在不重启服务的情况下更新运行时配置
|
||
pub async fn apply_runtime_config(&self, config: &ProxyConfig) {
|
||
*self.state.config.write().await = config.clone();
|
||
}
|
||
|
||
/// 热更新熔断器配置
|
||
///
|
||
/// 将新配置应用到所有已创建的熔断器实例
|
||
pub async fn update_circuit_breaker_configs(
|
||
&self,
|
||
config: super::circuit_breaker::CircuitBreakerConfig,
|
||
) {
|
||
self.state.provider_router.update_all_configs(config).await;
|
||
}
|
||
|
||
/// 重置指定 Provider 的熔断器
|
||
pub async fn reset_provider_circuit_breaker(&self, provider_id: &str, app_type: &str) {
|
||
self.state
|
||
.provider_router
|
||
.reset_provider_breaker(provider_id, app_type)
|
||
.await;
|
||
}
|
||
}
|