In How to skip specific Execution Plan Steps? an answer is provided to skip steps from a single path block. The example provided in xml worked out to skip a single step or multiple steps for one single block. However, I want to skip multiple steps, in multiple blocks. For instance my xml would look like:
<list>
<string>0_1_1_1_1</string>
<string>0_1_1_2_1</string>
<string>0_1_1_2_2</string>
</list>
When I execute a curl command to skip these tasks(/skip), supplemented by the xml file, the following message is retured:
Wrong paths Buffer(BlockPath(0_1_1_1_1), BlockPath(0_1_1_2_1), BlockPath(0_1_1_2_2))
Interestingly, Only the first item 0_1_1_1_1 is being skipped, the other ones are ignored. Do I need to adjust my xml syntax, or is there another way to skip a complete list of steps inside multiple blocks?