NodeService.indicesService is never null

This commit is contained in:
Mike McCandless 2016-06-22 10:04:33 -04:00
parent 52fcdf5e8d
commit cbc7ff3f9c
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ public class NodeService extends AbstractComponent implements Closeable {
httpServer == null ? null : httpServer.info(),
pluginService == null ? null : pluginService.info(),
ingestService == null ? null : ingestService.info(),
indicesService == null ? null : indicesService.getTotalIndexingBufferBytes()
indicesService.getTotalIndexingBufferBytes()
);
}