-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Add a pre-deployment sanity check #78
Comments
on it. |
I'm going to put the addition for this in |
This would probably be better to but in zappa.py so that it could be used by other clients. We should expect that this function may grow over time. |
@Miserlou |
It would be helpful to check types on config values -- for example, memory_size, parameter_depth, timout_seconds, etc all need to be numbers, not strings. If they are strings, zappa will zip your project, upload it, then fail with an error:
|
This recently happened to somebody in IRC:
Could we check if the specified module exists before uploading? |
Just display warnings if the app_module doesn't exist to avoid the
that happens from putting the wrong values in zappa_settings.
The text was updated successfully, but these errors were encountered: