Merge pull request #4352 from jonringer/allow-private-caches

treat s3 permission errors as file-not-found
This commit is contained in:
Eelco Dolstra
2020-12-13 13:39:20 +01:00
committed by GitHub
+2 -1
View File
@@ -166,7 +166,8 @@ S3Helper::FileTransferResult S3Helper::getObject(
dynamic_cast<std::stringstream &>(result.GetBody()).str());
} catch (S3Error & e) {
if (e.err != Aws::S3::S3Errors::NO_SUCH_KEY) throw;
if ((e.err != Aws::S3::S3Errors::NO_SUCH_KEY) &&
(e.err != Aws::S3::S3Errors::ACCESS_DENIED)) throw;
}
auto now2 = std::chrono::steady_clock::now();