Merge pull request #4352 from jonringer/allow-private-caches
treat s3 permission errors as file-not-found
This commit is contained in:
commit
92438c70d2
|
@ -166,7 +166,8 @@ S3Helper::FileTransferResult S3Helper::getObject(
|
||||||
dynamic_cast<std::stringstream &>(result.GetBody()).str());
|
dynamic_cast<std::stringstream &>(result.GetBody()).str());
|
||||||
|
|
||||||
} catch (S3Error & e) {
|
} 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();
|
auto now2 = std::chrono::steady_clock::now();
|
||||||
|
|
Loading…
Reference in a new issue