[rhmessaging-commits] rhmessaging commits: r4499 - store/trunk/cpp/lib/jrnl.

rhmessaging-commits at lists.jboss.org rhmessaging-commits at lists.jboss.org
Fri Mar 23 10:12:48 EDT 2012


Author: kpvdr
Date: 2012-03-23 10:12:48 -0400 (Fri, 23 Mar 2012)
New Revision: 4499

Modified:
   store/trunk/cpp/lib/jrnl/jcntl.cpp
Log:
Fix for BZ734883 - Async store throws JERR_JCNTL_RECOVERJFULL during recovery

Modified: store/trunk/cpp/lib/jrnl/jcntl.cpp
===================================================================
--- store/trunk/cpp/lib/jrnl/jcntl.cpp	2012-03-22 13:29:19 UTC (rev 4498)
+++ store/trunk/cpp/lib/jrnl/jcntl.cpp	2012-03-23 14:12:48 UTC (rev 4499)
@@ -648,7 +648,7 @@
 
         // Check for journal full condition
         u_int16_t next_wr_fid = (rd._lfid + 1) % rd._njf;
-        rd._jfull = rd._ffid == next_wr_fid && rd._enq_cnt_list[next_wr_fid];
+        rd._jfull = rd._ffid == next_wr_fid && rd._enq_cnt_list[next_wr_fid] && rd._lffull;
     }
 }
 



More information about the rhmessaging-commits mailing list