forked from wallabag/wallabag
Merge pull request #1903 from wallabag/force-server-version
Force server version to avoid connexion error
This commit is contained in:
@ -82,6 +82,7 @@ doctrine:
|
|||||||
password: "%database_password%"
|
password: "%database_password%"
|
||||||
charset: UTF8
|
charset: UTF8
|
||||||
path: "%database_path%"
|
path: "%database_path%"
|
||||||
|
server_version: 5.6
|
||||||
|
|
||||||
orm:
|
orm:
|
||||||
auto_generate_proxy_classes: "%kernel.debug%"
|
auto_generate_proxy_classes: "%kernel.debug%"
|
||||||
|
|||||||
@ -455,7 +455,13 @@ class InstallCommand extends ContainerAwareCommand
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return in_array($databaseName, $schemaManager->listDatabases());
|
try {
|
||||||
|
return in_array($databaseName, $schemaManager->listDatabases());
|
||||||
|
} catch (\Doctrine\DBAL\Exception\ConnectionException $e) {
|
||||||
|
// it means we weren't able to get database list, assume the database doesn't exist
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user