Skip to content

Commit

Permalink
Fix the preheat of the webservlet
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbasjes committed Aug 16, 2018
1 parent d0fd33d commit 218e7f3
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -19,7 +19,6 @@

import nl.basjes.parse.useragent.UserAgent;
import nl.basjes.parse.useragent.UserAgentAnalyzer;
import nl.basjes.parse.useragent.analyze.InvalidParserConfigurationException;
import org.apache.commons.lang3.tuple.ImmutablePair;
import org.apache.commons.lang3.tuple.MutablePair;
import org.apache.commons.lang3.tuple.Pair;
Expand Down Expand Up @@ -63,7 +62,7 @@ private static synchronized void ensureStarted() {
initStartMoment = System.currentTimeMillis();
new Thread(() -> {
try {
userAgentAnalyzer = UserAgentAnalyzer.newBuilder().dropTests().hideMatcherLoadStats().build();
userAgentAnalyzer = UserAgentAnalyzer.newBuilder().hideMatcherLoadStats().build();
userAgentAnalyzer.initializeMatchers();
userAgentAnalyzerIsAvailable = true;
} catch (Exception e){
Expand Down

0 comments on commit 218e7f3

Please sign in to comment.