diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-04-10 19:57:45 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-04-10 19:57:45 +0200 |
commit | c5dede84451571c9cad5d0145aac6d73731f3f26 (patch) | |
tree | f0de849bfd99d7b75061cecd50d836aafb096691 /src/Wallabag | |
parent | e9497f6fc03bfd7a1724224766120389f1c554ea (diff) | |
parent | 69c21157baa16ac838d408607856dd653da919d8 (diff) | |
download | wallabag-c5dede84451571c9cad5d0145aac6d73731f3f26.tar.gz wallabag-c5dede84451571c9cad5d0145aac6d73731f3f26.tar.zst wallabag-c5dede84451571c9cad5d0145aac6d73731f3f26.zip |
Merge pull request #1903 from wallabag/force-server-version
Force server version to avoid connexion error
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/CoreBundle/Command/InstallCommand.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Command/InstallCommand.php b/src/Wallabag/CoreBundle/Command/InstallCommand.php index c5a5a519..2e4a59df 100644 --- a/src/Wallabag/CoreBundle/Command/InstallCommand.php +++ b/src/Wallabag/CoreBundle/Command/InstallCommand.php | |||
@@ -455,7 +455,13 @@ class InstallCommand extends ContainerAwareCommand | |||
455 | return false; | 455 | return false; |
456 | } | 456 | } |
457 | 457 | ||
458 | return in_array($databaseName, $schemaManager->listDatabases()); | 458 | try { |
459 | return in_array($databaseName, $schemaManager->listDatabases()); | ||
460 | } catch (\Doctrine\DBAL\Exception\ConnectionException $e) { | ||
461 | // it means we weren't able to get database list, assume the database doesn't exist | ||
462 | |||
463 | return false; | ||
464 | } | ||
459 | } | 465 | } |
460 | 466 | ||
461 | /** | 467 | /** |