mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 13:42:22 +00:00
Switch to using require_once since it seems there are some conflicts with the autoloader
This commit is contained in:
parent
bf29c5e018
commit
1a5564ded5
1 changed files with 2 additions and 2 deletions
|
@ -13,8 +13,8 @@ if($APP_INCLUDE) {
|
||||||
require_once $APP_INCLUDE;
|
require_once $APP_INCLUDE;
|
||||||
}
|
}
|
||||||
|
|
||||||
require 'lib/Resque.php';
|
require_once 'lib/Resque.php';
|
||||||
require 'lib/Resque/Worker.php';
|
require_once 'lib/Resque/Worker.php';
|
||||||
|
|
||||||
$REDIS_BACKEND = getenv('REDIS_BACKEND');
|
$REDIS_BACKEND = getenv('REDIS_BACKEND');
|
||||||
if(!empty($REDIS_BACKEND)) {
|
if(!empty($REDIS_BACKEND)) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue