fix null pointer exception

filename were generated without '$', but the parsing code expected
the '$'.
This commit is contained in:
2018-03-28 19:34:48 +02:00
parent 9f37243ba3
commit 22c99f8517
3 changed files with 4 additions and 4 deletions

View File

@@ -63,7 +63,7 @@ public class PerformanceDb implements AutoCloseable {
public void put(final BlockingIterator<Entry> entries) throws WriteException {
final Duration timeBetweenSyncs = Duration.ofSeconds(1);
final Duration timeBetweenSyncs = Duration.ofSeconds(10);
long count = 0;
long insertionsSinceLastSync = 0;