mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Fix missing create_app_state import in mTLS e2e tests
The mtls_e2e module is gated with #[cfg(target_os = "linux")], so the wrong import (create_app_state_with_options instead of create_app_state) was never caught on macOS. Fixes CI compilation failure on Linux. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
2bc27d61d8
commit
7eb85d5ec9
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ mod mtls_e2e {
|
|||
use std::sync::Arc;
|
||||
|
||||
use fabro_server::jwt_auth::{AuthMode, AuthStrategy};
|
||||
use fabro_server::server::{build_router, create_app_state_with_options};
|
||||
use fabro_server::server::{build_router, create_app_state};
|
||||
use fabro_server::server_config::TlsSettings;
|
||||
use fabro_server::tls::{ClientAuth, build_rustls_config};
|
||||
use tokio::net::TcpListener;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue