Changeset - bcd18ce5de66
[Not reviewed]
default
0 1 0
Mads Kiilerich - 5 years ago 2020-12-20 22:43:30
mads@kiilerich.com
vcs: fix subprocessio process termination

659ecd26002c had a cut'n'paste error so it dropped process termination in the
SubprocessIOChunker close method.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/lib/vcs/subprocessio.py
Show inline comments
 
@@ -392,7 +392,7 @@ class SubprocessIOChunker(object):
 

	
 
    def close(self):
 
        try:
 
            getattr(self.output, 'terminate', lambda: None)()
 
            getattr(self.process, 'terminate', lambda: None)()
 
        except:
 
            pass
 
        try:
0 comments (0 inline, 0 general)