Skip to content

Commit

Permalink
updated comment in example
Browse files Browse the repository at this point in the history
  • Loading branch information
mfahampshire committed Dec 17, 2024
1 parent 17b9254 commit d430f7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async fn main() -> Result<()> {
nym_bin_common::logging::setup_logging();
setup_env(std::env::args().nth(1));

let conn_pool = ClientPool::new(2); // Start the client pool with 1 client always being kept in reserve
let conn_pool = ClientPool::new(2); // Start the Client Pool with 2 Clients always being kept in reserve
let client_maker = conn_pool.clone();
tokio::spawn(async move {
client_maker.start().await?;
Expand Down
2 changes: 1 addition & 1 deletion sdk/rust/nym-sdk/examples/client_pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async fn main() -> Result<()> {
nym_bin_common::logging::setup_logging();
setup_env(std::env::args().nth(1));

let conn_pool = ClientPool::new(2); // Start the client pool with 1 client always being kept in reserve
let conn_pool = ClientPool::new(2); // Start the Client Pool with 2 Clients always being kept in reserve
let client_maker = conn_pool.clone();
tokio::spawn(async move {
client_maker.start().await?;
Expand Down

0 comments on commit d430f7a

Please sign in to comment.