Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix URI mismatches #1981

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ directory and run ``chalice deploy``::

You now have an API up and running using API Gateway and Lambda::

$ curl https://qxea58oupc.execute-api.us-west-2.amazonaws.com/api/
$ curl https://abcd.execute-api.us-west-2.amazonaws.com/api/
{"hello": "world"}

Try making a change to the returned dictionary from the ``index()``
Expand Down Expand Up @@ -248,8 +248,8 @@ it created when running the ``chalice deploy`` command.
::

$ chalice delete
Deleting Rest API: abcd4kwyl4
Deleting function aws:arn:lambda:region:123456789:helloworld-dev
Deleting Rest API: abcd
Deleting function arn:aws:lambda:us-west-2:12345:function:helloworld-dev
Deleting IAM Role helloworld-dev


Expand Down