Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc_source/test-sam-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ Resources:
```

The preceding example configures the following RESTful API endpoints:
+ Create a new product with a `PUT` request to /products\.
+ Create a new product with a `POST` request to /products\.
+ List all products with a `GET` request to /products\.
+ Read, update, or delete a product with `GET`, `PUT` or `DELETE` request to /products/\{product\}\.

Expand Down Expand Up @@ -353,4 +353,4 @@ For compiled languages or projects requiring complex packaging support, we recom
Unlike Node\.js, \.NET or Java, Python requires you to enable remote debugging in your Lambda function code\. If you enable debugging \(using the `--debug-port` or `-d` options mentioned above\) for a function that uses one of the Python runtimes \(2\.7 or 3\.6\), SAM CLI maps through that port from your host machine to the Lambda container\. To enable remote debugging, use a Python package such as [remote\-pdb](https://pypi.python.org/pypi/remote-pdb)\.

**Important**
When configuring the host, the debugger listens in on your code, so make sure to use `0.0.0.0` and not `127.0.0.1`\.
When configuring the host, the debugger listens in on your code, so make sure to use `0.0.0.0` and not `127.0.0.1`\.