You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-issues@jackrabbit.apache.org by "Michael Dürig (JIRA)" <ji...@apache.org> on 2013/09/17 22:05:56 UTC

[jira] [Created] (OAK-1021) Wrong value for Segment#MEDIUM_LIMIT

Michael Dürig created OAK-1021:
----------------------------------

             Summary: Wrong value for Segment#MEDIUM_LIMIT
                 Key: OAK-1021
                 URL: https://issues.apache.org/jira/browse/OAK-1021
             Project: Jackrabbit Oak
          Issue Type: Bug
          Components: segmentmk
            Reporter: Michael Dürig


That value is defined as 

{code}
SMALL_LIMIT = 1 << 7;
MEDIUM_LIMIT = 1 << (16-2) + SMALL_LIMIT;
{code}

However it should most likely be

{code}
MEDIUM_LIMIT = (1 << 16-2) + SMALL_LIMIT;
{code}


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira