We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d420300 commit 457ca64Copy full SHA for 457ca64
modules/reindex/build.gradle
@@ -83,8 +83,9 @@ dependencies {
83
es090 'org.elasticsearch:elasticsearch:0.90.13@zip'
84
}
85
86
-if (Os.isFamily(Os.FAMILY_WINDOWS)) {
87
- // we can't get the pid files in windows so we skip reindex-from-old
+if (Os.isFamily(Os.FAMILY_WINDOWS) || rootProject.rootDir.toString().contains(" ")) {
+ // We can't get the pid files in windows and old versions of Elasticsearch doesn't set up the CLASSPATH correctly if there are spaces
88
+ // in the path. In either case, we skip reindex-from-old.
89
integTestRunner.systemProperty "tests.fromOld", "false"
90
} else {
91
integTestRunner.systemProperty "tests.fromOld", "true"
0 commit comments