Skip to content
Snippets Groups Projects
Commit 263b2b77 authored by Cody Messick's avatar Cody Messick
Browse files

lloidparts: Added queue with max_size_buffers = 1 after itacac, which

appears fix the issue people are having with injection jobs
occasionally hanging
parent 69d11a09
No related branches found
Tags gstlal-ugly-1.6.5-v1
No related merge requests found
Pipeline #71296 passed with warnings
......@@ -723,5 +723,7 @@ def mkLLOIDmulti(pipeline, detectors, banks, psd, psd_fft_length = 32, ht_gate_t
assert any(itacac_dict.values())
if verbose:
for bank_id, head in itacac_dict.items():
itacac_dict[bank_id] = pipeparts.mkprogressreport(pipeline, head, "progress_xml_bank_%s" % bank_id)
# FIXME Not sure why we need a queue here, but without
# the queue one injection job in ~5000 hangs
itacac_dict[bank_id] = pipeparts.mkprogressreport(pipeline, pipeparts.mkqueue(pipeline, head, max_size_buffers = 1, max_size_bytes = 0, max_size_time = 0), "progress_xml_bank_%s" % bank_id)
return itacac_dict
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment