I have a situation like this:
@sync begin
@async sometask(nodea)
@async sometask(nodeb)
end
The task displays a progress meter, created like this:
p = Progress(length(keys(gdf_memberships)); desc="Processing $(node.name) household memberships...")
The output is interlaced with progress updated on multiple lines, rather than just on two lines.
How can I fix this please - wasn't sure how to use the Tips for parallel programming in the documentation in this case.
I have a situation like this:
The task displays a progress meter, created like this:
The output is interlaced with progress updated on multiple lines, rather than just on two lines.
How can I fix this please - wasn't sure how to use the Tips for parallel programming in the documentation in this case.