updated comment in example

This commit is contained in:
mfahampshire
2024-12-17 11:28:07 +01:00
parent 4f5d86a50c
commit 16c3e5ff9a
2 changed files with 2 additions and 2 deletions
@@ -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?;
+1 -1
View File
@@ -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?;