Merge pull request #24455 from tnthornton:auth-retries-in-aws-sdk

PiperOrigin-RevId: 229669580
This commit is contained in:
TensorFlower Gardener 2019-01-16 19:32:56 -08:00
commit 2cf2569cbf
2 changed files with 12 additions and 4 deletions

View File

@ -54,6 +54,11 @@ cc_library(
hdrs = [
"aws-cpp-sdk-core/include/aws/core/SDKConfig.h",
],
copts = [
"-DAWS_SDK_VERSION_MAJOR=1",
"-DAWS_SDK_VERSION_MINOR=5",
"-DAWS_SDK_VERSION_PATCH=8",
],
defines = select({
"@org_tensorflow//tensorflow:linux_x86_64": [
"PLATFORM_LINUX",

View File

@ -2,14 +2,17 @@
load("//third_party:repo.bzl", "third_party_http_archive")
# NOTE: version updates here should also update the major, minor, and patch variables declared in
# the copts field of the //third_party/aws:aws target
def repo():
third_party_http_archive(
name = "aws",
urls = [
"https://mirror.bazel.build/github.com/aws/aws-sdk-cpp/archive/1.3.15.tar.gz",
"https://github.com/aws/aws-sdk-cpp/archive/1.3.15.tar.gz",
"https://mirror.bazel.build/github.com/aws/aws-sdk-cpp/archive/1.5.8.tar.gz",
"https://github.com/aws/aws-sdk-cpp/archive/1.5.8.tar.gz",
],
sha256 = "b888d8ce5fc10254c3dd6c9020c7764dd53cf39cf011249d0b4deda895de1b7c",
strip_prefix = "aws-sdk-cpp-1.3.15",
sha256 = "89905075fe50aa13e0337ff905c2e8c1ce9caf77a3504484a7cda39179120ffc",
strip_prefix = "aws-sdk-cpp-1.5.8",
build_file = "//third_party/aws:BUILD.bazel",
)