diff options
Diffstat (limited to 'ocs')
-rw-r--r-- | ocs/v1.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ocs/v1.php b/ocs/v1.php index d69904fc495..624355a8501 100644 --- a/ocs/v1.php +++ b/ocs/v1.php @@ -23,6 +23,14 @@ require_once '../lib/base.php'; +if (\OCP\Util::needUpgrade()) { + // since the behavior of apps or remotes are unpredictable during + // an upgrade, return a 503 directly + OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE); + OC_Template::printErrorPage('Service unavailable'); + exit; +} + use Symfony\Component\Routing\Exception\ResourceNotFoundException; use Symfony\Component\Routing\Exception\MethodNotAllowedException; |