8-char limit on transports

This commit is contained in:
Evan Prodromou 2009-04-23 10:09:08 +00:00
parent 290ae7888c
commit 1c0d82de3b
2 changed files with 3 additions and 2 deletions

View File

@ -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 ||

View File

@ -37,7 +37,7 @@ class MemcachedQueueHandler extends QueueHandler
{
function transport()
{
return 'memcached';
return 'memcache';
}
function start() {