mirror of
https://github.com/nextcloud/server.git
synced 2026-04-26 08:38:11 -04:00
fix(dav): Call Sabre server start
exec is deprecated and calls start. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
1768bd6280
commit
f5e9be96ae
1 changed files with 1 additions and 1 deletions
|
|
@ -360,7 +360,7 @@ class Server {
|
|||
/** @var IEventLogger $eventLogger */
|
||||
$eventLogger = \OC::$server->get(IEventLogger::class);
|
||||
$eventLogger->start('dav_server_exec', '');
|
||||
$this->server->exec();
|
||||
$this->server->start();
|
||||
$eventLogger->end('dav_server_exec');
|
||||
if ($this->profiler->isEnabled()) {
|
||||
$eventLogger->end('runtime');
|
||||
|
|
|
|||
Loading…
Reference in a new issue