8-char limit on transports
This commit is contained in:
parent
290ae7888c
commit
1c0d82de3b
|
@ -886,7 +886,8 @@ function common_enqueue_notice($notice)
|
|||
}
|
||||
|
||||
if (common_config('memcached', 'enabled')) {
|
||||
$transports[] = 'memcached';
|
||||
// Note: limited to 8 chars
|
||||
$transports[] = 'memcache';
|
||||
}
|
||||
|
||||
if (common_config('inboxes', 'enabled') === true ||
|
||||
|
|
|
@ -37,7 +37,7 @@ class MemcachedQueueHandler extends QueueHandler
|
|||
{
|
||||
function transport()
|
||||
{
|
||||
return 'memcached';
|
||||
return 'memcache';
|
||||
}
|
||||
|
||||
function start() {
|
||||
|
|
Loading…
Reference in New Issue
Block a user