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)