Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2015-02-26 15:44:32 +0000
committerThomas Watson2015-02-26 15:44:32 +0000
commit025ca5529ced196ed37091198976820e63180e1d (patch)
tree609460d754ffcee0d1f81900ca27ffaf5bc547c1
parent10e8552ddbef6daa75222d6ccc4d9e51e6f00b36 (diff)
downloadrt.equinox.framework-025ca5529ced196ed37091198976820e63180e1d.tar.gz
rt.equinox.framework-025ca5529ced196ed37091198976820e63180e1d.tar.xz
rt.equinox.framework-025ca5529ced196ed37091198976820e63180e1d.zip
Bug 460393 - Infinite loop in ResolverImpl.resolveI20150305-1200I20150303-0800
- default to resolve batch size of 1
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleResolver.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleResolver.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleResolver.java
index 2cd90873a..1eed9e0c4 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleResolver.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/container/ModuleResolver.java
@@ -55,7 +55,7 @@ final class ModuleResolver {
boolean DEBUG_WIRING = false;
boolean DEBUG_REPORT = false;
- private final int DEFAULT_BATCH_SIZE = 100;
+ private final int DEFAULT_BATCH_SIZE = 1;
final int resolverRevisionBatchSize;
void setDebugOptions() {

Back to the top