mirror of
https://github.com/idanoo/laravel-resque.git
synced 2024-11-21 08:01:59 +00:00
Merge tag '0.2.1' into development
0.2.1
This commit is contained in:
commit
31902c21ab
@ -53,9 +53,15 @@ class ResqueServiceProvider extends ServiceProvider
|
||||
$host = isset($config['host']) ? $config['host'] : 'localhost';
|
||||
$port = isset($config['port']) ? $config['port'] : 6379;
|
||||
$database = isset($config['database']) ? $config['database'] : 0;
|
||||
$password = isset($config['password']) ? $config['password'] : '';
|
||||
|
||||
$server = implode(':', [$host, $port]);
|
||||
if ($password) {
|
||||
$server = implode('@', [$password, $server]);
|
||||
}
|
||||
|
||||
\Resque::setBackend($server, $database);
|
||||
$dsn = sprintf('redis://%s/%s', $server, $database);
|
||||
|
||||
\Resque::setBackend($dsn);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user