Last active
October 13, 2015 23:05
-
-
Save ericduran/296b754df4ca8104ea01 to your computer and use it in GitHub Desktop.
See https://www.drupal.org/node/1613424 for issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/core/lib/Drupal/Core/Config/ConfigImporter.php b/core/lib/Drupal/Core/Config/ConfigImporter.php | |
index c7246be..01c413e 100644 | |
--- a/core/lib/Drupal/Core/Config/ConfigImporter.php | |
+++ b/core/lib/Drupal/Core/Config/ConfigImporter.php | |
@@ -514,7 +514,12 @@ public function initialize() { | |
$this->createExtensionChangelist(); | |
// Ensure that the changes have been validated. | |
- $this->validate(); | |
+ | |
+ // DO NOT ensure that the changes are valide. | |
+ // The only place where UUID collision is check is in validate() | |
+ // removing this lets the name take over without any issues (aka issues that we have yet to find). | |
+ // This is o.k. for now since it'll lets us do a site-install and then start from point x. | |
+ // $this->validate(); | |
if (!$this->lock->acquire(static::LOCK_NAME)) { | |
// Another process is synchronizing configuration. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment