mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
fix(db): Too few arguments for Doctrine\DBAL\Driver::getDatabasePlatform - expecting versionProvider to be passed
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
5823d58d30
commit
e8ef23d052
1 changed files with 1 additions and 1 deletions
|
|
@ -702,7 +702,7 @@ class Connection extends PrimaryReadReplicaConnection {
|
|||
}
|
||||
|
||||
try {
|
||||
$this->_conn->query($this->getDriver()->getDatabasePlatform()->getDummySelectSQL());
|
||||
$this->_conn->query($this->getDatabasePlatform()->getDummySelectSQL());
|
||||
$this->lastConnectionCheck[$this->getConnectionName()] = time();
|
||||
} catch (ConnectionLost|\Exception $e) {
|
||||
$this->logger->warning('Exception during connectivity check, closing and reconnecting', ['exception' => $e]);
|
||||
|
|
|
|||
Loading…
Reference in a new issue