Skip to content

Commit 820c6e4

Browse files
authored
Merge pull request #59 from paynl/feature/PLUG-5445
PLUG-5445 - Change caching time of order status request to 1 second
2 parents 429b899 + a523ab6 commit 820c6e4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Model/Request/OrderStatusRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function start(): PayOrder
7272

7373
$result = (new PayCache())->get($cacheKey, function () {
7474
return parent::start();
75-
}, 3); // 3 seconds file caching
75+
}, 1); // 1 second file caching
7676
} else {
7777
$result = parent::start();
7878
}

0 commit comments

Comments
 (0)