I’m running a collection of scenarios that together work as the backend of an outreach bot. It gets the prospect data from a google sheet and updates it along the way with the outcome
Normally it should send a new 1 request every 15 secs for each prospect. Today I woke up to it sending tens of requests for the same prospects every 0.5 sec or so. and I’m not quite sure where’s the problem coming from.
.
I already have some status updates along the way to make sure the bot isn’t reaching to the same person more than once
This scenario checks all the prospects and it initiate the bot request one by one
This one checks weather the prospect responded or not, if it did it’ll update the status on the google sheet and send a http request to the next scenario
this one sync the data collected from the conversation in realtime,
Issue : it’s sending duplicates of the same prospect to the sync data scenario instead of just one
–
There’s no errors occurring, it’s just sending alot of duplicates