mirror of https://github.com/apache/lucene.git
remove some core changes; add missing sync that caused stress test failure
This commit is contained in:
parent
027bc0e4d6
commit
3a47dd29bc
|
@ -175,10 +175,8 @@ public class NRTCachingDirectory extends FilterDirectory implements Accountable
|
|||
@Override
|
||||
public void renameFile(String source, String dest) throws IOException {
|
||||
unCache(source);
|
||||
try {
|
||||
cache.deleteFile(dest);
|
||||
} catch (FileNotFoundException fnfe) {
|
||||
// OK -- it may not exist
|
||||
if (cache.fileNameExists(dest)) {
|
||||
throw new IllegalArgumentException("target file " + dest + " already exists");
|
||||
}
|
||||
in.renameFile(source, dest);
|
||||
}
|
||||
|
|
|
@ -107,9 +107,6 @@ public final class IOUtils {
|
|||
* objects to call <tt>close()</tt> on
|
||||
*/
|
||||
public static void closeWhileHandlingException(Closeable... objects) {
|
||||
if (objects.length == 0) {
|
||||
throw new IllegalArgumentException("pass at least one Closeable");
|
||||
}
|
||||
closeWhileHandlingException(Arrays.asList(objects));
|
||||
}
|
||||
|
||||
|
|
|
@ -679,6 +679,7 @@ class SimplePrimaryNode extends PrimaryNode {
|
|||
int replicaTCPPort = in.readVInt();
|
||||
message("new replica: " + warmingSegments.size() + " current warming merges");
|
||||
// Step through all currently warming segments and try to add this replica if it isn't there already:
|
||||
synchronized(warmingSegments) {
|
||||
for(MergePreCopy preCopy : warmingSegments) {
|
||||
message("warming segment " + preCopy.files.keySet());
|
||||
boolean found = false;
|
||||
|
@ -715,6 +716,7 @@ class SimplePrimaryNode extends PrimaryNode {
|
|||
c.s.shutdownOutput();
|
||||
message("successfully started warming");
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue