From 26ae7a63da71268800ff106859df63b418a34a47 Mon Sep 17 00:00:00 2001 From: Joe Frey Date: Wed, 8 Aug 2012 16:19:53 -0400 Subject: [PATCH] fixing missing and incorrect paths for Resque class and Resque_Job_Status --- demo/check_status.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/demo/check_status.php b/demo/check_status.php index c5c194c..c195911 100644 --- a/demo/check_status.php +++ b/demo/check_status.php @@ -3,7 +3,8 @@ if(empty($argv[1])) { die('Specify the ID of a job to monitor the status of.'); } -require '../lib/resque.php'; +require '../lib/Resque/Job/Status.php'; +require '../lib/Resque.php'; date_default_timezone_set('GMT'); Resque::setBackend('127.0.0.1:6379'); @@ -17,4 +18,4 @@ while(true) { fwrite(STDOUT, "Status of ".$argv[1]." is: ".$status->get()."\n"); sleep(1); } -?> \ No newline at end of file +?>