David Mayo
David Mayo
I solve a similar problem by including code that causes Python's print() to default to always flush as the first Python calls. >interp.exec("import functools"); >interp.exec("print = functools.partial(print, flush=True)"); Technique from...
Thanks so much!
I'm using a minimal `config.yaml` with nothing special in it: ```yaml default: dsn: cfdp: mib: path: ./temp/mib datasink: outgoing: path: ./temp/datasink/outgoing incoming: path: ./temp/datasink/incoming tempfiles: path: ./temp/datasink/tempfiles pdusink: path: ./temp/datasink/pdusink...