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(
251251 TypeChangeEvent .class ,
252252 (e ) -> {
253253 // 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 );
256258 if (Boolean .TRUE .equals (
257259 changedTypes .putIfAbsent (e .oldType .getName ().toString (), true ))) {
258260 // store an error if we see duplicate change event
@@ -271,7 +273,8 @@ private void invalidationTestInner(
271273 // any non-empty error will fail the test so it's OK to do this multiple times
272274 removedQueryEventError .set (
273275 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" );
275278 }
276279 preparedStmtCacheRemoveLatch .countDown ();
277280 });
You can’t perform that action at this time.
0 commit comments