hi all, i’ve built a plugin based around clearing all of a user’s MFA methods attached to their IdP account. because of the some of the endpoints i’m querying, the responses take too long and i was getting a timeout error every time i prompted for this plugin at a certain step. i found this post that helped point me in the direction of running the actions that were timing out as compound actions instead (yay community gainz), then i set a return for the output. the plugin now functions all the way through which is great! however, i’ve noticed that when a compound action runs, the bot automatically sends this message “the process is running, i’ll let you know when it’s finished” except much more verbose, i’m assuming because the compound action runs async.
my problem is i have 3 compound actions that consecutively after decision policies are satisfied and i end up getting like 3 of the exact same message after the prompt and the couple of actions are called, it’s just a bit loud and not a great experience for the user...is there any way i can deflect those messages? could i use progress_updates variables and set the in_progress and on_complete to NULL or “Do not send any messages” to control ? i’m currently including no progress_updates in the compound actions and linked a ss of the messages below. it seems like the messages are the on_initiation messages?
any help appreciated! :)


