use of org.graylog2.lookup.db.DBCacheService in project graylog2-server by Graylog2.
the class LookupCacheFacadeTest method setUp.
@Before
@SuppressForbidden("Using Executors.newSingleThreadExecutor() is okay in tests")
public void setUp() throws Exception {
final ClusterEventBus clusterEventBus = new ClusterEventBus("cluster-event-bus", Executors.newSingleThreadExecutor());
cacheService = new DBCacheService(mongodb.mongoConnection(), new MongoJackObjectMapperProvider(objectMapper), clusterEventBus);
pluginMetaData = new HashSet<>();
facade = new LookupCacheFacade(objectMapper, cacheService, pluginMetaData);
}
Aggregations