yii-resque icon indicating copy to clipboard operation
yii-resque copied to clipboard

Failed to AUTH connection

Open kcloze opened this issue 9 years ago • 1 comments

CredisException

Failed to AUTH connection

/mnt/hgfs/code/ycf_resque/protected/components/yii-resque/lib/Credis/Client.php(612)

600                 }
601 
602                 // Multi and pipeline return self for chaining
603                 if($this->isMulti) {
604                     call_user_func_array(array($this->redisMulti, $name), $args);
605                     return $this;
606                 }
607 
608                 $response = call_user_func_array(array($this->redis, $name), $args);
609             }
610             // Wrap exceptions
611             catch(RedisException $e) {
612                 throw new CredisException($e->getMessage(), $e->getCode());
613             }
614 
615             #echo "> $name : ".substr(print_r($response, TRUE),0,100)."\n";
616 
617             // change return values where it is too difficult to minim in standalone mode
618             switch($name)
619             {
620                 case 'hmget':
621                     $response = array_values($response);
622                     break;
623                 case 'type':
624                     $typeMap = array(

kcloze avatar Jun 02 '15 09:06 kcloze

Can't reproduce this, can you show me your configuration?

rolies106 avatar Jun 19 '15 11:06 rolies106