-
Notifications
You must be signed in to change notification settings - Fork 40
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
Flower #6
Comments
FYI - in latest run, Flower didn't start. Probably need to pass -D to webserver - daemonize it so 2nd part of command runs |
Thanks! yeah, you're right. I'll change the script |
Found out that flower does not support SQS So I'm moving to redis instead |
FYI what actually needs to happen is something like this (used in my case where I'm putting the scheduler and webserver on one host).
exec spawns things in a new (dedicated) process so it can't have bash helpers like &&, will need to be called twice. |
Yes, i did that, but flower throws errors wich led me to that issue saying flower doesnt support SQS |
Actually, be careful using that approach. This may not be an issue with Flower but Scheduler quits frequently and is managed by systemctl. Putting two things under that same script will mean that systemctl will wait for all of them to exit before restarting either. I had to rewrite this a lot for my use case (scheduler + webserver on same host) ultimate setting up a systemctl for each of them, with slightly different service environments. |
No description provided.
The text was updated successfully, but these errors were encountered: