Author: jawi
Date: Tue Jan 19 13:31:07 2016
New Revision: 1725513
URL: http://svn.apache.org/viewvc?rev=1725513&view=rev
Log:
FELIX-5077 / FELIX-3331 - more reliable shutdown
- do not shut down the input stream, as it causes the update bundle
functionality to break. Without this, the stopping of either the framework or
the shell bundle still works properly.
Modified:
felix/trunk/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/CommandSessionImpl.java
Modified:
felix/trunk/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/CommandSessionImpl.java
URL:
http://svn.apache.org/viewvc/felix/trunk/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/CommandSessionImpl.java?rev=1725513&r1=1725512&r2=1725513&view=diff
==============================================================================
---
felix/trunk/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/CommandSessionImpl.java
(original)
+++
felix/trunk/gogo/runtime/src/main/java/org/apache/felix/gogo/runtime/CommandSessionImpl.java
Tue Jan 19 13:31:07 2016
@@ -74,8 +74,6 @@ public class CommandSessionImpl implemen
{
this.processor.removeSession(this);
this.closed = true;
-
- this.in = closeSilently(in);
}
}