From: <tho...@us...> - 2013-10-29 12:07:14
|
Revision: 7489 http://bigdata.svn.sourceforge.net/bigdata/?rev=7489&view=rev Author: thompsonbry Date: 2013-10-29 12:07:08 +0000 (Tue, 29 Oct 2013) Log Message: ----------- changed "journal" to "HALog" in error messages for MAGIC and VERSION. Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/ha/halog/HALogReader.java Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/ha/halog/HALogReader.java =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/ha/halog/HALogReader.java 2013-10-28 19:16:50 UTC (rev 7488) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/ha/halog/HALogReader.java 2013-10-29 12:07:08 UTC (rev 7489) @@ -126,11 +126,11 @@ ex); } if (magic != HALogWriter.MAGIC) - throw new RuntimeException("Bad journal magic: expected=" + throw new RuntimeException("Bad HALog magic: expected=" + HALogWriter.MAGIC + ", actual=" + magic); version = m_raf.readInt(); if (version != HALogWriter.VERSION1) - throw new RuntimeException("Bad journal version: expected=" + throw new RuntimeException("Bad HALog version: expected=" + HALogWriter.VERSION1 + ", actual=" + version); final RootBlockUtility tmp = new RootBlockUtility(reopener, file, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |