fix(sdk): add missing session_token field to RpcClientConfig

The middleware-dev agent added session_token to RpcClientConfig
but the SDK client initializer was not updated, breaking the build.
This commit is contained in:
2026-03-04 12:31:32 +01:00
parent d118fdbddf
commit 6b757f8d65

View File

@@ -49,6 +49,7 @@ impl QpqClient {
server_name: self.config.server_name.clone(),
tls_config: Arc::new(tls_config),
alpn: self.config.alpn.clone(),
session_token: self.session_token.clone(),
};
let client = quicproquo_rpc::client::RpcClient::connect(rpc_config).await?;