mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04: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)
|
public function processWebhookRequest(PaymentWebhookRequest $request)
|
||||||
{
|
{
|
||||||
// Allow app to catch up with webhook request.
|
// Allow app to catch up with webhook request.
|
||||||
sleep(4);
|
// sleep(4);
|
||||||
|
usleep(2800000, 4000000);
|
||||||
|
|
||||||
$validator = Validator::make($request->all(), [
|
$validator = Validator::make($request->all(), [
|
||||||
'id' => ['required', 'starts_with:tr'],
|
'id' => ['required', 'starts_with:tr'],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user