Skip to content

Commit

Permalink
Update API Endpoints (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijc authored Jan 20, 2020
1 parent 2162c12 commit ab1a65d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name="braket-sdk",
version="0.2.1",
version="0.2.2",
license="Apache License 2.0",
python_requires=">= 3.7.2",
packages=find_namespace_packages(where="src", exclude=("test",)),
Expand Down
6 changes: 3 additions & 3 deletions src/braket/aws/aws_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ class AwsSession(object):
S3DestinationFolder = NamedTuple("S3DestinationFolder", [("bucket", str), ("key", int)])

BRAKET_ENDPOINTS = {
"us-west-1": "https://fdoco1n1x7.execute-api.us-west-1.amazonaws.com/Prod",
"us-west-2": "https://xe15dbdvw6.execute-api.us-west-2.amazonaws.com/Prod",
"us-east-1": "https://kqjovr0n70.execute-api.us-east-1.amazonaws.com/Prod",
"us-west-1": "https://fdoco1n1x7.execute-api.us-west-1.amazonaws.com/V2",
"us-west-2": "https://xe15dbdvw6.execute-api.us-west-2.amazonaws.com/V2",
"us-east-1": "https://kqjovr0n70.execute-api.us-east-1.amazonaws.com/V2",
}

# similar to sagemaker sdk:
Expand Down

0 comments on commit ab1a65d

Please sign in to comment.