We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99f8e41 commit 8123480Copy full SHA for 8123480
modules/unsuck/unsuck.hpp
@@ -385,6 +385,11 @@ inline std::shared_ptr<Aws::S3::S3Client> getS3Client() {
385
clientConfig.endpointOverride = env_p;
386
}
387
388
+ clientConfig.requestTimeoutMs = 3000;
389
+ clientConfig.connectTimeoutMs = 1000;
390
+ clientConfig.maxConnections = 25; // Increase for higher concurrency
391
+ clientConfig.enableTcpKeepAlive = true;
392
+
393
bool usePathStyle = false; // Default to virtual-style addressing
394
if (const char* env_p = std::getenv("AWS_USE_PATH_STYLE")) {
395
std::string env_value(env_p);
0 commit comments