mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-09 20:52:56 +01:00
change from sleep to usleep for mollie
This commit is contained in:
parent
a4a2e237db
commit
1241d8226d
@ -286,7 +286,8 @@ class MolliePaymentDriver extends BaseDriver
|
||||
public function processWebhookRequest(PaymentWebhookRequest $request)
|
||||
{
|
||||
// Allow app to catch up with webhook request.
|
||||
sleep(4);
|
||||
// sleep(4);
|
||||
usleep(2800000, 4000000);
|
||||
|
||||
$validator = Validator::make($request->all(), [
|
||||
'id' => ['required', 'starts_with:tr'],
|
||||
|
Loading…
Reference in New Issue
Block a user