nur/update: drop eval output instead of filling pipe

Since nothing reads the pipe, writes block indefinitely
once the pipe's buffer is full.
This commit is contained in:
Will Dietz 2019-01-02 14:02:39 -06:00
parent 3cec008463
commit 37889531f3

View file

@ -50,7 +50,7 @@ import {EVALREPO_PATH} {{
logger.info(f"Evaluate repository {repo.name}")
proc = subprocess.Popen(
cmd, env=dict(PATH=os.environ["PATH"]), stdout=subprocess.PIPE
cmd, env=dict(PATH=os.environ["PATH"]), stdout=subprocess.DEVNULL
)
try:
res = proc.wait(5)