diff --git a/laravel/app/Http/Controllers/TestingController.php b/laravel/app/Http/Controllers/TestingController.php index 37287928..247d7a37 100644 --- a/laravel/app/Http/Controllers/TestingController.php +++ b/laravel/app/Http/Controllers/TestingController.php @@ -32,10 +32,8 @@ class TestingController extends Controller // Testing Cache (Redis) Cache::pull('test'); - // Testing Queue (Beanstalkd) - $this->dispatch(new TestingQueue()); - return view('welcome'); + } catch(Exception $e) { echo $e->getMessage(); } diff --git a/laravel/app/Jobs/TestingQueue.php b/laravel/app/Jobs/TestingQueue.php deleted file mode 100644 index 7c3e7964..00000000 --- a/laravel/app/Jobs/TestingQueue.php +++ /dev/null @@ -1,24 +0,0 @@ -