| 766 | } |
| 767 | |
| 768 | void S3BlobStoreEndpoint::returnConnection(ReusableConnection& rconn) { |
| 769 | // If it expires in the future then add it to the pool in the front |
| 770 | if (rconn.expirationTime > now()) |
| 771 | connectionPool.push(rconn); |
| 772 | rconn.conn = Reference<IConnection>(); |
| 773 | } |
| 774 | |
| 775 | std::string awsCanonicalURI(const std::string& resource, std::vector<std::string>& queryParameters, bool isV4) { |
| 776 | StringRef resourceRef(resource); |
no test coverage detected