Uploaded image for project: 'Infinispan'
  1. Infinispan
  2. ISPN-3558

PutForExternalRead won't work after a clear(), when both in same tx

    XMLWordPrintable

Details

    • Bug
    • Resolution: Won't Do
    • Blocker
    • None
    • 5.3.0.Final, 6.0.0.Beta1
    • Transactions

    Description

         public void testPutForExternalReadAfterClear() throws Exception {
            cache.put(1, "v1");
            tm().begin();
            try {
               cache.getAdvancedCache().clear();
               cache.putForExternalRead(1, "v1");
               assertEquals("v1", cache.get(1));
            } finally {
               tm().commit();
            }
         }
      

      Attachments

        Activity

          People

            wburns@redhat.com Will Burns
            rh-ee-galder Galder ZamarreƱo
            Votes:
            0 Vote for this issue
            Watchers:
            6 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: