diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-30 12:09:42 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-30 12:31:33 +0200 |
commit | 4da5a741927e512464358f1d717019389e350e66 (patch) | |
tree | f96f2c66361c2da14c14134a81f290df618dc55a /settings/templates/admin.php | |
parent | 12b482b976656bb73b1dd265b3e069ff4eb71c65 (diff) | |
download | nextcloud-server-4da5a741927e512464358f1d717019389e350e66.tar.gz nextcloud-server-4da5a741927e512464358f1d717019389e350e66.zip |
Add a warning when the transaction isolation level is not READ_COMMITED
Diffstat (limited to 'settings/templates/admin.php')
-rw-r--r-- | settings/templates/admin.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 6cf4b43c162..0cdefe10083 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -97,6 +97,15 @@ if (!$_['isAnnotationsWorking']) { <?php } +// Is the Transaction isolation level READ_COMMITED? +if ($_['invalidTransactionIsolationLevel']) { + ?> + <li> + <?php p($l->t('Your database does not run with "READ COMMITED" transaction isolation level. This can cause problems when multiple actions are executed in parallel.')); ?> + </li> +<?php +} + // Windows Warning if ($_['WindowsWarning']) { ?> |