##// END OF EJS Templates
vcs: fix processing of git commands that return output on stderr...
domruf -
r5744:7e67883e default
parent child Browse files
Show More
@@ -355,7 +355,7 b' class SubprocessIOChunker(object):'
355 starting_values)
355 starting_values)
356 bg_err = BufferedGenerator(_p.stderr, 16000, 1, bottomless=True)
356 bg_err = BufferedGenerator(_p.stderr, 16000, 1, bottomless=True)
357
357
358 while not bg_out.done_reading and not bg_out.reading_paused and not bg_err.length:
358 while not bg_out.done_reading and not bg_out.reading_paused:
359 # doing this until we reach either end of file, or end of buffer.
359 # doing this until we reach either end of file, or end of buffer.
360 bg_out.data_added_event.wait(1)
360 bg_out.data_added_event.wait(1)
361 bg_out.data_added_event.clear()
361 bg_out.data_added_event.clear()
General Comments 0
You need to be logged in to leave comments. Login now