PHRAS-2161_coll-id-in-log-docs_MASTER

- explicit message when databox is failed to mount.
- reconnect db for long migration scripts
- mark (comment) doctrine "binary_strings" type so the upgrade is not done every time because the field was read-back as "varchar"
- proposal on long migration scripts (could be faster)
This commit is contained in:
Jean-Yves Gaulier
2018-08-16 10:07:40 +02:00
parent e94292a44c
commit f7b103af3d
4 changed files with 57 additions and 4 deletions

View File

@@ -177,7 +177,8 @@ class DataboxesController extends Controller
catch (\Exception $exception) {
return $this->app->redirectPath('admin_databases', [
'success' => 0,
'error' => 'mount-failed'
// 'error' => 'mount-failed'
'error' => $exception->getMessage()
]);
}
}