File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
integration-tests/src/test/java/com/datastax/oss/driver/core/cql Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -251,8 +251,10 @@ private void invalidationTestInner(
251
251
TypeChangeEvent .class ,
252
252
(e ) -> {
253
253
// expect one event per type changed and for every parent type that nests it
254
- LOG .info ("Received TypeChangeEvent for type: {} (changeType: {})" ,
255
- e .oldType .getName (), e .changeType );
254
+ LOG .info (
255
+ "Received TypeChangeEvent for type: {} (changeType: {})" ,
256
+ e .oldType .getName (),
257
+ e .changeType );
256
258
if (Boolean .TRUE .equals (
257
259
changedTypes .putIfAbsent (e .oldType .getName ().toString (), true ))) {
258
260
// store an error if we see duplicate change event
@@ -271,7 +273,8 @@ private void invalidationTestInner(
271
273
// any non-empty error will fail the test so it's OK to do this multiple times
272
274
removedQueryEventError .set (
273
275
Optional .of ("Unable to set reference for PS removal event" ));
274
- LOG .warn ("Multiple PreparedStatementRemovalEvents received, ignoring subsequent ones" );
276
+ LOG .warn (
277
+ "Multiple PreparedStatementRemovalEvents received, ignoring subsequent ones" );
275
278
}
276
279
preparedStmtCacheRemoveLatch .countDown ();
277
280
});
You can’t perform that action at this time.
0 commit comments