Fixed NPE case occurring when local solr index is disabled in search.

pull/108/head
luccioman 8 years ago
parent def55ec166
commit 526f2d6a8b

@ -466,7 +466,7 @@ public final class SearchEvent {
final Thread waitForThread; final Thread waitForThread;
public RWIProcess(final Thread waitForThread) { public RWIProcess(final Thread waitForThread) {
super("SearchEvent.RWIProcess(" + waitForThread != null ? waitForThread.getName() : "" + ")"); super("SearchEvent.RWIProcess(" + (waitForThread != null ? waitForThread.getName() : "") + ")");
this.waitForThread = waitForThread; this.waitForThread = waitForThread;
} }

Loading…
Cancel
Save