Uploaded image for project: 'Ignite'
  1. Ignite
  2. IGNITE-9443

IgniteSet iterator created on client node is not working with the replicated cache.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Duplicate
    • 2.6
    • None
    • data structures
    • None

    Description

      IgniteSet iterator created on client node is not working with the replicated cache.

      Reproducer:

          public void testClientIteratorOnReplicatedCache() throws Exception {
              startGrid(0);
      
              Ignition.setClientMode(true);
      
              Ignite client = startGrid(1);
      
              Ignition.setClientMode(false);
      
              IgniteSet<Integer> set = client.set("test", new CollectionConfiguration().setCacheMode(CacheMode.REPLICATED));
      
              set.add(1);
      
              assertTrue(set.iterator().hasNext());
          }
      

      Attachments

        Issue Links

          Activity

            People

              xtern Pavel Pereslegin
              xtern Pavel Pereslegin
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: