@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
Cancellation of the Phone Number Obtained in the Event of Any Error
-
The function takes a phone number at the beginning and continues with the script. Once it is successfully completed, it completes the phone number, but how can I ensure that the phone number is cancelled if there is an error within the function?
For example, if there is an error such as ‘CSS not found’ or ‘Element not found,’ and the thread fails as a result, I want the number to be cancelled.
Is this possible in BAS?
-
@docker0004 if sms not arrived, then it will be cancelled by itself with timeout on serverside
you can do one big try catch with all your actions, and if was error then cancel number(if variable with number != undefined ) -
Yes, I am already using try catch, but I still wanted to ask about this. I thought there was a specific action for this in BAS, such as OnApplicationExit, just like ‘OnApplicationStart’.
Thank you for your advice.