You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now Freemius limits the webhooks execution to 10 seconds. This is not ideal since the Mautic API can take a while to process the logic it needs to.
It would be best to save the webhook received by Freemius for later processing instead of trying to run all the logic while the webhook is limited to 10 seconds.
Converting Coach to a plugin will also make it easier to get started with for other Freemius users not big on editing code.
The text was updated successfully, but these errors were encountered:
Somewhat made this better by saving the webhook from freemius and later processing it. This might still be better as a plugin and make it easier to build on
Right now Freemius limits the webhooks execution to 10 seconds. This is not ideal since the Mautic API can take a while to process the logic it needs to.
I can foresee that as a mautic install grows, it would take more time to run the processes Coach Freem is asking it to. One such process is to search for a contact when only given the email: https://github.com/UVLabs/coach-freem/blob/1.1.3/includes/Contacts/Base.php#L60
It would be best to save the webhook received by Freemius for later processing instead of trying to run all the logic while the webhook is limited to 10 seconds.
Converting Coach to a plugin will also make it easier to get started with for other Freemius users not big on editing code.
The text was updated successfully, but these errors were encountered: