You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2021/09/13 14:40:34 UTC

[GitHub] [ignite-3] ibessonov commented on a change in pull request #334: IGNITE-15501 Improvements in ConfigurationExtension - support for listeners and internal schema extensions

ibessonov commented on a change in pull request #334:
URL: https://github.com/apache/ignite-3/pull/334#discussion_r707401783



##########
File path: modules/configuration/src/test/java/org/apache/ignite/internal/configuration/testframework/ConfigurationExtensionTest.java
##########
@@ -50,4 +56,62 @@ public void injectConfiguration(
 
         assertEquals(300, paramCfg.joinTimeout().value());
     }
+
+    /** Tests that notifications work on injected configuration instance. */
+    @Test
+    public void notifications() {
+        List<String> log = new ArrayList<>();
+
+        fieldCfg.listen(ctx -> {
+            log.add("update");

Review comment:
       yes




-- 
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-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org