timoninmaxim commented on code in PR #11713: URL: https://github.com/apache/ignite/pull/11713#discussion_r1878571318
########## modules/core/src/test/java/org/apache/ignite/internal/client/thin/ThinClientNonTransactionalOperationsInTxTest.java: ########## @@ -95,4 +97,41 @@ private void checkThinClientCacheOperation(IgniteClient client, Consumer<ClientC assertTrue(cache.containsKey(1)); assertFalse(cache.containsKey(2)); } + + /** */ + @Test + public void testThinClientCacheRemove() throws Exception { + startGrid(0); + + IgniteClient client = Ignition.startClient(new ClientConfiguration().setAddresses(Config.SERVER)); Review Comment: use try-with-resources construction for creating IgniteClient. Let's also add it for `testThinClientCacheClear`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org