We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1d4647 commit 200c9cfCopy full SHA for 200c9cf
Examples/quoteapi/README.md
@@ -20,6 +20,11 @@ The **sam build** command uses Docker to compile your Swift Lambda function and
20
sam build
21
```
22
23
+On macOS, you might need to run this command if `sam` doesn't see `docker`:
24
+```bash
25
+export DOCKER_HOST=unix://$HOME/.docker/run/docker.sock
26
+```
27
+
28
## Deploy the application
29
30
The **sam deploy** command creates the Lambda function and API Gateway in your AWS account.
Tests/OpenAPILambdaTests/Router/RouterGraphTest.swift
@@ -433,4 +433,6 @@ struct RouterGraphTests {
433
return graph
434
}
435
436
+ // TODO: add a test to check what happens when two methods + identiacal paths with two different handlers are added
437
438
0 commit comments