You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by ju...@apache.org on 2013/12/12 22:15:29 UTC

svn commit: r1550532 - /jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/segment/SegmentNodeStoreService.java

Author: jukka
Date: Thu Dec 12 21:15:29 2013
New Revision: 1550532

URL: http://svn.apache.org/r1550532
Log:
OAK-795: OSGi init issues

Remove the 64-bit default value of the tarmk.mode property.
If the property is unspecified, the system should auto-detect
the TarMK mode instead of always using a hardcoded default.

Modified:
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/segment/SegmentNodeStoreService.java

Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/segment/SegmentNodeStoreService.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/segment/SegmentNodeStoreService.java?rev=1550532&r1=1550531&r2=1550532&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/segment/SegmentNodeStoreService.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/segment/SegmentNodeStoreService.java Thu Dec 12 21:15:29 2013
@@ -48,7 +48,7 @@ public class SegmentNodeStoreService ext
     @Property(description="TarMK directory")
     public static final String DIRECTORY = "repository.home";
 
-    @Property(description="TarMK mode (64 for memory mapping, 32 for normal file access)", value="64")
+    @Property(description="TarMK mode (64 for memory mapping, 32 for normal file access)")
     public static final String MODE = "tarmk.mode";
 
     @Property(description="TarMK maximum file size (MB)", intValue=256)