change default of findAuthorizedPerformanceOptimize

it is now false
This commit is contained in:
rradillen
2015-05-14 22:21:24 +02:00
parent 4da27c53d6
commit 1a2fdb3a6a

View File

@@ -1564,7 +1564,7 @@ public class Collection extends DSpaceObject
public static Collection[] findAuthorizedOptimized(Context context, int actionID) throws java.sql.SQLException
{
if(! ConfigurationManager.getBooleanProperty("org.dspace.content.Collection.findAuthorizedPerformanceOptimize", true)) {
if(! ConfigurationManager.getBooleanProperty("org.dspace.content.Collection.findAuthorizedPerformanceOptimize", false)) {
// Fallback to legacy query if config says so. The rationale could be that a site found a bug.
return findAuthorized(context, null, actionID);
}