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
The external-node image ignores SIGTERM and does not attempt a shutdown.
SIGTERM
If stop_signal: SIGINT is added to the compose yml, then the node shuts down cleanly
stop_signal: SIGINT
In addition, clean shutdown can take close to 90s: Recommend adding stop_grace_period: 5m to the sample compose yml
stop_grace_period: 5m
Run an external node with the sample compose at https://github.com/matter-labs/zksync-era/blob/main/docs/guides/external-node/docker-compose-examples/mainnet-external-node-docker-compose.yml, issue a docker compose down while also watching logs, observe it does not attempt to shut down, nor has enough time to do so if it did.
docker compose down
The text was updated successfully, but these errors were encountered:
No branches or pull requests
🐛 Bug Report
📝 Description
The external-node image ignores
SIGTERM
and does not attempt a shutdown.If
stop_signal: SIGINT
is added to the compose yml, then the node shuts down cleanlyIn addition, clean shutdown can take close to 90s: Recommend adding
stop_grace_period: 5m
to the sample compose yml🔄 Reproduction Steps
Run an external node with the sample compose at https://github.com/matter-labs/zksync-era/blob/main/docs/guides/external-node/docker-compose-examples/mainnet-external-node-docker-compose.yml, issue a
docker compose down
while also watching logs, observe it does not attempt to shut down, nor has enough time to do so if it did.The text was updated successfully, but these errors were encountered: