1
0
Fork 0
mirror of synced 2024-07-06 07:00:56 +12:00
appwrite/tests/resources/functions/timeout/index.php
Bradley Schofield bca326dc8d Improvements to executor
- Executor now loads runtimes from php-runtimes package
- Executor now handles timeouts correctly
- Executor can now shutdown and remove containers before shutting down itself preventing a `docker-compose stop` failure due to active network endpoints.
- Fixed a issue with JWT's not working
- Improved general executor reliability
- Tests now pass!
2021-09-06 01:37:20 +01:00

5 lines
63 B
PHP

<?php
return function ($request, $response) {
sleep(5);
};