Skip to content

Commit 81f41c9

Browse files
committed
Make the dummy task sleep longer
1 parent d17ed65 commit 81f41c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Tasks/SleepingAsyncTask.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
class SleepingAsyncTask implements AsyncTaskInterface
88
{
9-
// just sleeps for 2 seconds, and finish
9+
// just sleeps for 5 seconds, and finish
1010

1111
public function __construct()
1212
{
1313
}
1414

1515
public function execute(): void
1616
{
17-
sleep(2);
17+
sleep(5);
1818
}
1919

2020
public function handleTimeout(): void

0 commit comments

Comments
 (0)