Skip to content

Commit

Permalink
Merge pull request #3 from ambarltd/style_fix
Browse files Browse the repository at this point in the history
Style fix
  • Loading branch information
galeaspablo authored Oct 2, 2024
2 parents 622408b + 055bbda commit 3b057b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion development-environment/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ printf "\n\n\n\n\n"
echo "============================================"
echo "Executing end to end tests. Expecting to find records:"
echo "============================================"
docker exec -it pgt-proxy-postgres-client bash ./end_to_end_test.sh | grep "[email protected]"
docker exec -t pgt-proxy-postgres-client bash ./end_to_end_test.sh | grep "[email protected]"
echo "============================================"
echo "Executed end to end tests successfully. Connected successfully to the database through the proxy, and read a record."
echo "============================================"
Expand Down
2 changes: 1 addition & 1 deletion src/tls_client_config.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use anyhow::bail;
use rustls::{ClientConfig, RootCertStore};
use std::fs;
use std::io::{Cursor, Read};
use anyhow::bail;

pub(crate) fn client_config(ca_roots_directory: &str) -> anyhow::Result<ClientConfig> {
let mut root_cert_store = RootCertStore::empty();
Expand Down

0 comments on commit 3b057b5

Please sign in to comment.