-
Notifications
You must be signed in to change notification settings - Fork 33
Open
Description
When setting the separator option in print_record it has no effect. It might be unnecessary?
Input:
{ "hello" : "World" }
{ "hello" : "Underworld" }
Flux:
FLUX_DIR + "inputFile.json"
| open-file
| as-records
| decode-json
| fix(FLUX_DIR + "base.fix",*)
| encode-yaml
| print
;
Fix:
print_record(separator:"\n Next record:",destination: "test.json",append:"true")
add_field("hello","Void")
Output:
stout
---
hello: "Void"
---
hello: "Void"
test.json
{"hello":"World"}
{"hello":"Underworld"}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Type
Projects
Status
Backlog