Clean up transport fingerprint configuration

Remove legacy tls_profile handling, keep header fingerprint under transport profiles, and drop the duplicate auth_modules migration.
This commit is contained in:
fawney19
2026-05-06 13:54:33 +08:00
parent 6fbb867f5f
commit 68216bf868
53 changed files with 267 additions and 238 deletions

View File

@@ -214,13 +214,6 @@ impl<'a> AdminAppState<'a> {
)
}
pub(crate) fn resolve_transport_tls_profile(
&self,
transport: &AdminGatewayProviderTransportSnapshot,
) -> Option<String> {
crate::provider_transport::resolve_transport_tls_profile(transport)
}
pub(crate) fn resolve_transport_profile(
&self,
transport: &AdminGatewayProviderTransportSnapshot,

View File

@@ -1646,10 +1646,10 @@ fn local_execution_runtime_miss_skip_reason_label(reason: &str) -> &str {
"transport_header_rules_apply_failed" => "Header 规则应用失败",
"transport_oauth_resolution_unsupported" => "OAuth 认证解析不支持本地执行",
"transport_provider_type_unsupported" => "提供商类型不支持本地执行",
"transport_proxy_or_tls_unsupported" => "代理或 TLS 配置不支持本地执行",
"transport_proxy_or_profile_unsupported" => "代理或传输指纹配置不支持本地执行",
"transport_proxy_unsupported" => "代理配置不支持本地执行",
"transport_snapshot_missing" => "提供商传输配置缺失",
"transport_tls_profile_unsupported" => "TLS 指纹配置不支持本地执行",
"transport_profile_unsupported" => "传输指纹配置不支持本地执行",
"transport_unsupported" => "传输配置不支持本地执行",
"upstream_url_missing" => "无法构建上游请求地址",
other => other,