You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2013/12/14 02:20:05 UTC

svn commit: r1550864 - /directory/apacheds/trunk/core-shared/src/main/java/org/apache/directory/server/core/shared/partition/DefaultPartitionNexus.java

Author: elecharny
Date: Sat Dec 14 01:20:05 2013
New Revision: 1550864

URL: http://svn.apache.org/r1550864
Log:
Use the Attribute ID instead of the UpId

Modified:
    directory/apacheds/trunk/core-shared/src/main/java/org/apache/directory/server/core/shared/partition/DefaultPartitionNexus.java

Modified: directory/apacheds/trunk/core-shared/src/main/java/org/apache/directory/server/core/shared/partition/DefaultPartitionNexus.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core-shared/src/main/java/org/apache/directory/server/core/shared/partition/DefaultPartitionNexus.java?rev=1550864&r1=1550863&r2=1550864&view=diff
==============================================================================
--- directory/apacheds/trunk/core-shared/src/main/java/org/apache/directory/server/core/shared/partition/DefaultPartitionNexus.java (original)
+++ directory/apacheds/trunk/core-shared/src/main/java/org/apache/directory/server/core/shared/partition/DefaultPartitionNexus.java Sat Dec 14 01:20:05 2013
@@ -640,7 +640,7 @@ public class DefaultPartitionNexus exten
 
         for ( Attribute attribute : rootDse )
         {
-            AttributeType type = schemaManager.lookupAttributeTypeRegistry( attribute.getUpId() );
+            AttributeType type = schemaManager.lookupAttributeTypeRegistry( attribute.getId() );
 
             if ( realIds.contains( type.getOid() ) )
             {