commit | 87fd1ceb2a1b7cd4589e2c3244c5c7dfbf26d6b7 | [log] [tgz] |
---|---|---|
author | Guillaume Nodet <gnodet@apache.org> | Wed Jan 19 09:44:24 2011 +0000 |
committer | Guillaume Nodet <gnodet@apache.org> | Wed Jan 19 09:44:24 2011 +0000 |
tree | cb8e14f3cd3ce12a150446e232fd42a4d73edd6a | |
parent | 5672f76d09d7a233348b0967224fa28b9b68096e [diff] |
[FELIX-2784] When the framework try to grab the bundle lock, it ignores thread interruption git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1060732 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/src/main/java/org/apache/felix/framework/Felix.java b/framework/src/main/java/org/apache/felix/framework/Felix.java index eed93df..f7ccdb1 100644 --- a/framework/src/main/java/org/apache/felix/framework/Felix.java +++ b/framework/src/main/java/org/apache/felix/framework/Felix.java
@@ -4713,7 +4713,7 @@ } catch (InterruptedException ex) { - // Ignore and just keep waiting. + throw new IllegalStateException("Unable to acquire bundle lock, thread interrupted."); } }