diff options
author | tlatorre <tlatorre@uchicago.edu> | 2019-06-20 12:31:33 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2019-06-20 12:31:33 -0500 |
commit | 807281fdd6aa8300f7f4a57460c3a369d5310907 (patch) | |
tree | 441aaa6cc6a0ac4e634e1b2dbe6f3d7225ff27fe /src | |
parent | 2dee47211b8bc94de97eb26507489cd44e11ef4c (diff) | |
download | sddm-807281fdd6aa8300f7f4a57460c3a369d5310907.tar.gz sddm-807281fdd6aa8300f7f4a57460c3a369d5310907.tar.bz2 sddm-807281fdd6aa8300f7f4a57460c3a369d5310907.zip |
update zdab-cat to emit multiple YAML documents
This commit updates zdab-cat to output each event as an individual YAML
document. The advantage of this is that we can then iterate over these without
loading the entire YAML document in submit-grid-jobs which means that we won't
use GB of memory on the grid submission node.
Diffstat (limited to 'src')
-rw-r--r-- | src/zdab-cat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zdab-cat.c b/src/zdab-cat.c index d661752..3178626 100644 --- a/src/zdab-cat.c +++ b/src/zdab-cat.c @@ -161,7 +161,7 @@ int main(int argc, char **argv) continue; } - if (fout) fprintf(fout, " -\n"); + if (fout) fprintf(fout, "---\n"); if (bmast.links[KMAST_MC-1] == 0) goto skip_mc; |