2
0
Derivar 0

Correct the Nanobox deploy hooks for order and context (#12663)

One hook was actually duplicated incorrectly; this has been fixed. Another hook was re-ordered for better results in actual use.
Este cometimento está contido em:
Dan Hunsaker 2019-12-22 00:55:27 -07:00 cometido por Eugen Rochko
ascendente 902c6bed5a
cometimento 6821b34e02
1 ficheiros modificados com 3 adições e 4 eliminações

Ver ficheiro

@ -60,16 +60,15 @@ deploy.config:
- touch /app/log/production.log
before_live:
web.web:
- bin/tootctl cache clear
- bundle exec rake db:migrate:setup
after_live:
worker.sidekiq:
- |-
if [[ "${ES_ENABLED}" != "false" ]]
then
bin/tootctl search deploy
fi
- bin/tootctl cache clear
after_live:
worker.sidekiq:
- bin/tootctl search deploy
web.web: