You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Latest 9 and 8 versions display this just fine. I'd misread the code. We show them below:
catch (ConfigException $e) {
// Return a negative result for UI purposes. We do not differentiate// between an actual synchronization error and a failed lock, because// concurrent synchronizations are an edge-case happening only when// multiple developers or site builders attempt to do it without// coordinating.$message = 'The import failed due for the following reasons:' . "\n";
$message .= implode("\n", $config_importer->getErrors());
watchdog_exception('config_import', $e);
returndrush_set_error('config_import_fail', $message);
In the config export command, if there are errors, it currently just throws a generic exception:
Rather, it would be nice to loop through those and display them as they contain meaningful information about what went wrong.
The text was updated successfully, but these errors were encountered: