From 35dd6a38886de5fbeb8d14ee21b6475ffd559b72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Tue, 31 Dec 2024 07:22:09 +0100 Subject: [PATCH] update all sleep times to 3s --- test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.sh b/test.sh index ac726fc..d5c9dc6 100755 --- a/test.sh +++ b/test.sh @@ -54,13 +54,13 @@ without_queue_assertions() { dispatch_central_job() { echo "Dispatching job from central context..." docker compose exec -T queue php artisan tinker --execute "dispatch(new App\Jobs\FooJob);" - sleep 5 + sleep 3 } dispatch_tenant_job() { echo "Dispatching job from tenant context..." docker compose exec -T queue php artisan tinker --execute "App\\Models\\Tenant::first()->run(function () { dispatch(new App\Jobs\FooJob); });" - sleep 5 + sleep 3 }