Skip to content

Commit

Permalink
FELIX-1858 - Remote commands via ssh only work once per restart
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@834355 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
ccustine committed Nov 10, 2009
1 parent 284471b commit f272e8b
Showing 1 changed file with 5 additions and 3 deletions.
Expand Up @@ -103,9 +103,6 @@ public void run()
{
out.flush();
closure.session.service.threadIO.close();
tIn.set(in);
tOut.set(out);
tErr.set(err);

try
{
Expand All @@ -122,6 +119,11 @@ public void run()
{
e.printStackTrace();
}

tIn.set(null);
tOut.set(null);
tErr.set(null);

}
}
}

0 comments on commit f272e8b

Please sign in to comment.