You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@slider.apache.org by st...@apache.org on 2014/11/02 15:25:28 UTC

[16/50] git commit: SLIDER-584 don't drop the rest of the line before the closedown loop kicks in

SLIDER-584 don't drop the rest of the line before the closedown loop kicks in


Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/e7713527
Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/e7713527
Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/e7713527

Branch: refs/heads/feature/SLIDER-531-registry-enhancements
Commit: e7713527ea61c9da7ce2d20cee431abfe2288989
Parents: fbca62d
Author: Steve Loughran <st...@apache.org>
Authored: Thu Oct 30 19:11:46 2014 +0000
Committer: Steve Loughran <st...@apache.org>
Committed: Thu Oct 30 19:11:46 2014 +0000

----------------------------------------------------------------------
 slider-assembly/src/main/scripts/slider.py | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/e7713527/slider-assembly/src/main/scripts/slider.py
----------------------------------------------------------------------
diff --git a/slider-assembly/src/main/scripts/slider.py b/slider-assembly/src/main/scripts/slider.py
index 79933bb..02b0355 100644
--- a/slider-assembly/src/main/scripts/slider.py
+++ b/slider-assembly/src/main/scripts/slider.py
@@ -170,6 +170,7 @@ def print_output(name, src, toStdErr):
       out(toStdErr, line + "\n")
       flush(toStdErr)
       line = ""
+  out(toStdErr, line)
   # closedown: read remainder of stream
   c = src.read(1)
   while c!="" :