Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2014-08-19 16:25:59 +0000
committerThomas Watson2014-08-19 16:25:59 +0000
commitb203efe8f485ce36de5e87d8c0d0c7fae094de92 (patch)
tree07331885f796e1567c8104adf653fae655bf8aef /bundles/org.eclipse.osgi
parent1a51c4fb1e1843f624833fa7395cf65bdd5c5654 (diff)
downloadrt.equinox.framework-b203efe8f485ce36de5e87d8c0d0c7fae094de92.tar.gz
rt.equinox.framework-b203efe8f485ce36de5e87d8c0d0c7fae094de92.tar.xz
rt.equinox.framework-b203efe8f485ce36de5e87d8c0d0c7fae094de92.zip
Bug 442080 - Increase the timeout to obtain the bundle id lock
Diffstat (limited to 'bundles/org.eclipse.osgi')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java
index a964a4ccf..680862d39 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java
@@ -861,7 +861,7 @@ public class Storage {
}
// sleep to allow another thread to get the database lock
try {
- Thread.sleep(10);
+ Thread.sleep(50);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
}

Back to the top