Fix the workflow of not using proxy.

This commit is contained in:
Renxuan Wang 2022-08-22 11:16:37 -07:00
parent 28cd5bb559
commit 2d78468cc0
1 changed files with 2 additions and 0 deletions

View File

@ -747,6 +747,8 @@ ACTOR Future<S3BlobStoreEndpoint::ReusableConnection> connect_impl(Reference<S3B
Reference<IConnection> _conn = wait(INetworkConnections::net()->connect(host, service, false));
conn = _conn;
}
} else {
wait(store(conn, INetworkConnections::net()->connect(host, service, isTLS)));
}
wait(conn->connectHandshake());