fix: allow ps_start to fail during a ps:restore

Instead of blocking the start of each app based on whether the previous app started, we simply log and continue.

Closes #2463
This commit is contained in:
Jose Diaz-Gonzalez
2017-01-08 20:17:23 -07:00
parent 87573b81bb
commit 831fdeb030

View File

@@ -11,7 +11,11 @@ ps_restore_cmd() {
local DOKKU_APP_RESTORE=$(config_get "$app" DOKKU_APP_RESTORE || true)
if [[ $DOKKU_APP_RESTORE != 0 ]]; then
echo "Restoring app $app ..."
ps_start "$app"
if ps_start "$app"; then
continue
fi
dokku_log_warn "dokku ps:restore ${app} failed"
fi
done
}