-
-
Notifications
You must be signed in to change notification settings - Fork 82
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
packaged artifact broken on latest release on serverless@1.39.0 #30
Comments
looking at the @0.1.39.0 "hello": {
"handler": "test-func",
"events": [],
"name": "aws-rust-dev-hello",
"package": {
"artifact": "/Users/dougtangren/code/rust/serverless-rust/tests/test-func/.serverless/target/lambda/release/test-func.zip"
},
"memory": 128,
"timeout": 6,
"runtime": "provided",
"vpc": {}
} then @1.38.0 "functions": {
"hello": {
"handler": "test-func",
"events": [],
"name": "aws-rust-dev-hello",
"package": {
"artifact": "target/lambda/release/test-func.zip"
},
"memory": 128,
"timeout": 6,
"runtime": "provided",
"vpc": {}
}
}, |
This was referenced Mar 16, 2019
a patch was released https://github.com/serverless/serverless/releases/tag/v1.39.1 |
fixed upstream |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
🐛 Bug description
Describe your issue in detail.
running npx serverless deploy of functions using the latest serverless release (1.39.0) results in the following error
🤔 Expected Behavior
function was deployed as expected with previous releases
👟 Steps to reproduce
while testing the latest version for the new invoke local support, a regression test of deployment revealed this error. I'm suspect that something changed in the way serverless resolves artifact paths. an open issue now exists upstream with many users reporting the same issue serverless/serverless#5931
🌍 Your environment
serverless version:
1.39.0
rust-plugin version:
latest
The text was updated successfully, but these errors were encountered: