Restart supervisord early#2494
Merged
casperklein merged 2 commits intodocker-mailserver:masterfrom Mar 21, 2022
Merged
Conversation
polarathene
approved these changes
Mar 21, 2022
Member
polarathene
left a comment
There was a problem hiding this comment.
source /usr/local/bin/setup-stack.shis needed to call_setup_supervisor.
Just moving this line to the top would be fine. But I decided to move the whole sourcing block to the top and integrated also the helpers sourcing in it.
Could probably just extract that out of setup-stack.sh, but it's all just functions being sourced so no concerns either way 👍
Member
|
I'm fine with merging this too. Maybe we can ditch |
georglauterbach
approved these changes
Mar 21, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
With
SUPERVISOR_LOGLEVEL=info, supervisord is restarted on startup to activate the new loglevel. Restarting supervisord, will also restartstart-mailserver.sh.This is how it looks like on container start:
This is not optimal. Some tasks are processed twice. To fix this, supervisord must be restarted as early as possible.
I've moved the necessary lines to the top.
source /usr/local/bin/setup-stack.shis needed to call_setup_supervisor. Just moving this line to the top would be fine. But I decided to move the whole sourcing block to the top and integrated also the helpers sourcing in it.After the changes it looks like this:
Type of change
Checklist:
docs/)