rename put to putEntries

The method name put is used too often so that eclipse has a
hard time finding references.
This commit is contained in:
2018-10-11 19:25:01 +02:00
parent 979e001efd
commit eaa234bfa5
3 changed files with 18 additions and 20 deletions

View File

@@ -189,7 +189,7 @@ public class TcpIngestor implements Ingestor, AutoCloseable, DisposableBean {
boolean finished = false;
while (!finished) {
try {
db.put(new BlockingQueueIterator<>(queue, Entry.POISON));
db.putEntries(new BlockingQueueIterator<>(queue, Entry.POISON));
finished = true;
} catch (final Exception e) {
LOGGER.warn("Write to database failed. Will retry with the next element.", e);