let manager = ConnectionManager::<PgConnection>::new(self.database_url());
r2d2::Pool::builder().build(manager).expect("Failed to create pool.")
This however fails after a couple of seconds if the script is started with proxychains cargo run --release. Is there's a way to use the pool behind proxychains?
Hi, I'm creating a
DbPoolConnection
by usingThis however fails after a couple of seconds if the script is started with
proxychains cargo run --release
. Is there's a way to use the pool behind proxychains?