[SQL upgrade] Catch more errors

master
andryyy 2019-09-25 12:53:14 +02:00
parent 8b453ab803
commit 8c26371d6d
No known key found for this signature in database
GPG Key ID: 8EC34FF2794E25EF
3 changed files with 5 additions and 4 deletions

View File

@ -228,7 +228,7 @@ class container_post(Resource):
container.restart()
return jsonify(type='warning', msg='mysql_upgrade: upgrade was applied', text=sql_return.output.decode('utf-8'))
else:
return jsonify(type='error', msg='mysql_upgrade: error running command')
return jsonify(type='error', msg='mysql_upgrade: error running command', text=sql_return.output.decode('utf-8'))
# api call: container_post - post_action: exec - cmd: reload - task: dovecot

View File

@ -57,7 +57,8 @@ until [[ ${SQL_UPGRADE_STATUS} == 'success' ]]; do
echo "MySQL is up-to-date - debug output:"
echo ${SQL_FULL_UPGRADE_RETURN}
else
echo "No valid reponse for mysql_upgrade was received"
echo "No valid reponse for mysql_upgrade was received, debug output:"
echo ${SQL_FULL_UPGRADE_RETURN}
fi
done

View File

@ -95,7 +95,7 @@ services:
- rspamd
php-fpm-mailcow:
image: mailcow/phpfpm:1.46
image: mailcow/phpfpm:1.47
build: ./data/Dockerfiles/phpfpm
command: "php-fpm -d date.timezone=${TZ} -d expose_php=0"
depends_on:
@ -394,7 +394,7 @@ services:
- watchdog
dockerapi-mailcow:
image: mailcow/dockerapi:1.33
image: mailcow/dockerapi:1.34
restart: always
build: ./data/Dockerfiles/dockerapi
oom_kill_disable: true