@YounesGa To have each thread use only 1 line, set the value "max success usage: 1", "max number of simultaneous use: 1".
This is equivalent to the fact that after the flow finishes running with a result of Success, the already used proxy line will not be used again, whereas if there is an error, it will be reused 999999999 times and only one line. for each stream
290a12f6-98cf-4378-9d4c-72a246339adb-image.png
using the same data and order across threads.
-
Hello dear friends. I am using 5 threads. There is a for loop inside. Inside this for loop, I call a txt from outside. And I want each line to be the same in all threads.
Thread1-->line1
Thread2-->line1
Thread3-->line1
Thread4-->line1
Thread5-->line1When the for loop comes
Thread1-->line2
Thread2-->line2
Thread3-->line2
Thread4-->line2
Thread5-->line2I've been trying for days and can't find it.
-
You can create as many identical lists as you have threads, name them in order 1,2,3, ....
In the thread from the script info cube you can get the thread number, and take the list by thread number. -
@SuperMario I have no idea how to do this. Could you please send me a sample file?
"Get the list by thread number." I don't quite understand how to do this?