Replies: 1 comment 1 reply
-
Interesting. I would expect that this would work. Can you send some more code detailing how you set things up? Just a single service right? Can you also explain how you determined that multiple TLS connections were being established? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Use case
I want to scan multiple accounts (100+) in different regions, and I want to reuse TLS connections for each region, which means no matter how many accounts I want to access, the code only creates TLS connections per region.
Problem
For example, I want to make a lot of requests for account A and B in 5 regions. I would expect there are only 5 TLS handshake happened but not.
I already ensure only one SharedHttpClient is created and used in different aws_config::SdkConfig
Question
How could I achieve it or is it possible?
Beta Was this translation helpful? Give feedback.
All reactions