diff options
author | Pytal <24800714+Pytal@users.noreply.github.com> | 2021-07-05 10:44:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-05 10:44:10 -0700 |
commit | 04441d501238f7d2b1514febf9af37068de94335 (patch) | |
tree | fc526be1b01946f70c9b3ab99652985e081c70dc /lib | |
parent | 8037a4be5731fea4bf9519c2a46c61dd5dadb73f (diff) | |
parent | 37ff07b9e16eda6b429902cf2df42be440953f69 (diff) | |
download | nextcloud-server-04441d501238f7d2b1514febf9af37068de94335.tar.gz nextcloud-server-04441d501238f7d2b1514febf9af37068de94335.zip |
Merge pull request #27767 from nextcloud/enh/20515/maintenance-mode-info
Improve maintenance mode info
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Console/Application.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Console/Application.php b/lib/private/Console/Application.php index 58a6b2f9ac7..11efe7d8ccf 100644 --- a/lib/private/Console/Application.php +++ b/lib/private/Console/Application.php @@ -180,8 +180,8 @@ class Application { && $input->getArgument('command') !== 'maintenance:mode') { $errOutput = $output->getErrorOutput(); $errOutput->writeln( - '<comment>Nextcloud is in maintenance mode - ' . - 'no apps have been loaded</comment>' . PHP_EOL + '<comment>Nextcloud is in maintenance mode, hence the database isn\'t accessible.' . PHP_EOL . + 'Cannot perform any command except \'maintenance:mode --off\'</comment>' . PHP_EOL ); } } |