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 ccb50f7 commit 5035b27Copy full SHA for 5035b27
README.md
@@ -15,7 +15,7 @@ pip install scaleway-functions-python
15
16
# Standard entrypoint to a Scaleway serverless function
17
def handler(event, context):
18
- if event["method"] != "GET":
+ if event["httpMethod"] != "GET":
19
return {"statusCode": 405, "body": "Invalid method!"}
20
return "Hello World!"
21
0 commit comments