I'm having trouble getting my worker process to update in Heroku. I have a worker dyno set in my Procfile that is connected to a Redis instance; I cannot see changes that I make to this file after deploying.
I've tried:
- Resetting the dyno using
heroku ps:restart worker.1 -a [appname]
- Restarting all dynos using
heroku ps:restart -a [appname]
- Changing the contents of the file so the size is different
- Changing the Procfile to point to a different PHP file
Nothing works. It looks like it picked up some of my changes overnight (maybe during reboot?) but I can't force it to pick up the changes... any ideas?