We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For those running into the following error with blank-go example:
./3-invoke.sh { "StatusCode": 200, "FunctionError": "Unhandled", "ExecutedVersion": "$LATEST" } {"errorType":"Runtime.InvalidEntrypoint","errorMessage":"RequestId: 6932893d-a61b-4ff5-98b4-64758a8311d1 Error: fork/exec /var/task/bootstrap: exec format error"}
If you're on an amd64/aarch64 machine like an M1+ Mac, make the following change to the invoker script:
- GOOS=linux go build -tags lambda.norpc -o bootstrap main.go + GOARCH=amd64 GOOS=linux go build -tags lambda.norpc -o bootstrap main.go
If this worked for you, consider giving some karma to Dominic O'Connor on StackOverflow.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For those running into the following error with blank-go example:
If you're on an amd64/aarch64 machine like an M1+ Mac, make the following change to the invoker script:
If this worked for you, consider giving some karma to Dominic O'Connor on StackOverflow.
The text was updated successfully, but these errors were encountered: