Merge pull request #6908 from nextcloud/6132-12
[stable12] Do not log WebDAV maintenance mode exception
This commit is contained in:
commit
35c1540984
|
@ -28,8 +28,7 @@
|
|||
namespace OCA\DAV\Connector\Sabre;
|
||||
|
||||
use OCP\ILogger;
|
||||
use Sabre\DAV\Exception;
|
||||
use Sabre\HTTP\Response;
|
||||
use Sabre\DAV\Exception\ServiceUnavailable;
|
||||
|
||||
class ExceptionLoggerPlugin extends \Sabre\DAV\ServerPlugin {
|
||||
protected $nonFatalExceptions = [
|
||||
|
@ -90,7 +89,12 @@ class ExceptionLoggerPlugin extends \Sabre\DAV\ServerPlugin {
|
|||
public function logException(\Exception $ex) {
|
||||
$exceptionClass = get_class($ex);
|
||||
$level = \OCP\Util::FATAL;
|
||||
if (isset($this->nonFatalExceptions[$exceptionClass])) {
|
||||
if (isset($this->nonFatalExceptions[$exceptionClass]) ||
|
||||
(
|
||||
$exceptionClass === ServiceUnavailable::class &&
|
||||
$ex->getMessage() === 'System in maintenance mode.'
|
||||
)
|
||||
) {
|
||||
$level = \OCP\Util::DEBUG;
|
||||
}
|
||||
|
||||
|
|
|
@ -28,6 +28,7 @@ use OCA\DAV\Connector\Sabre\ExceptionLoggerPlugin as PluginToTest;
|
|||
use OC\Log;
|
||||
use PHPUnit_Framework_MockObject_MockObject;
|
||||
use Sabre\DAV\Exception\NotFound;
|
||||
use Sabre\DAV\Exception\ServiceUnavailable;
|
||||
use Sabre\DAV\Server;
|
||||
use Test\TestCase;
|
||||
|
||||
|
@ -77,6 +78,8 @@ class ExceptionLoggerPluginTest extends TestCase {
|
|||
public function providesExceptions() {
|
||||
return [
|
||||
[0, '', new NotFound()],
|
||||
[0, 'System in maintenance mode.', new ServiceUnavailable('System in maintenance mode.')],
|
||||
[4, 'Upgrade needed', new ServiceUnavailable('Upgrade needed')],
|
||||
[4, 'This path leads to nowhere', new InvalidPath('This path leads to nowhere')]
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue