Skip to content

Commit

Permalink
fix: inconsistent parameters passed for modifying TLS configuration
Browse files Browse the repository at this point in the history
Signed-off-by: Alan Tang <[email protected]>
  • Loading branch information
Standing-Man committed Dec 12, 2024
1 parent 5402ae4 commit 157afd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/xline/tests/it/tls_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ fn basic_tls_configs(size: usize) -> Vec<XlineServerConfig> {
.peer_ca_cert_path(None)
.peer_cert_path(Some(PathBuf::from("../../fixtures/server.crt")))
.peer_key_path(Some(PathBuf::from("../../fixtures/server.key")))
.peer_ca_cert_path(Some(PathBuf::from("../../fixtures/ca.crt")))
.client_ca_cert_path(Some(PathBuf::from("../../fixtures/ca.crt")))
.client_cert_path(None)
.client_key_path(None)
.build(),
Expand Down

0 comments on commit 157afd0

Please sign in to comment.