Jump to content

Recommended Posts

Posted

Hello,

Im creating a blesta module, the problem i have is that the module is using external API that have request rate limits.

The problem i want to prevent is when running addService via the cron in case the API is rate limited and there is no response is it possible to skip the cron run, by skip i mean to skip this run and run it again on the next cron run?

 

Posted

I did a bit more investigation on my own..

 

So what if i create error in the addService because there is this check `if (($errors = $this->Services->errors())) {`, will then the cron run again this service on the next run?

Posted

In that case, your module should set Input errors because it cannot provision the service remotely at that time. When your module's addService or editService is called, but you cannot add or edit the service, set errors and return:

$this->Input->setErrors(['error' => 'Enter your error description here']);
return;

 

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...