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
Currently the wasmer deploy command waits for the deployed app version to become reachable.
wasmer deploy
At the moment it waits until the responses have the expected version header, AND until the responses have a 2xx response code.
This causes long wait times without proper log information if the app is deployed, but doesn't respond with 2xx codes.
We should rewrite the logic to only wait for the header values to match, and log an error if the response is not 2xx.
Also, 3xx headers are valid success responses, so those should also be counted as successful deploys.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Currently the
wasmer deploy
command waits for the deployed app version to become reachable.At the moment it waits until the responses have the expected version header, AND until the responses have a 2xx response code.
This causes long wait times without proper log information if the app is deployed, but doesn't respond with 2xx codes.
We should rewrite the logic to only wait for the header values to match, and log an error if the response is not 2xx.
Also, 3xx headers are valid success responses, so those should also be counted as successful deploys.
The text was updated successfully, but these errors were encountered: