We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
When using a pipeline combined with a coroutine, some commands might get mixed into the pipeline. Please consider introducing pipeline objects, e.g.:
local pipe = red:start_pipeline() pipe:set(...) -- ... for result in ipairs(pipe:commit()) do -- ... end