Replace deprecated lSize with lLen
[lhc/web/wiklou.git] / includes / jobqueue / JobQueueRedis.php
index eb91680..759662d 100644 (file)
@@ -18,7 +18,6 @@
  * http://www.gnu.org/copyleft/gpl.html
  *
  * @file
- * @author Aaron Schulz
  */
 use Psr\Log\LoggerInterface;
 
@@ -133,7 +132,7 @@ class JobQueueRedis extends JobQueue {
        protected function doGetSize() {
                $conn = $this->getConnection();
                try {
-                       return $conn->lSize( $this->getQueueKey( 'l-unclaimed' ) );
+                       return $conn->lLen( $this->getQueueKey( 'l-unclaimed' ) );
                } catch ( RedisException $e ) {
                        $this->throwRedisException( $conn, $e );
                }
@@ -503,7 +502,7 @@ LUA;
                                $keys[] = $this->getQueueKey( $prop );
                        }
 
-                       $ok = ( $conn->delete( $keys ) !== false );
+                       $ok = ( $conn->del( $keys ) !== false );
                        $conn->sRem( $this->getGlobalKey( 's-queuesWithJobs' ), $this->encodeQueueName() );
 
                        return $ok;
@@ -608,7 +607,7 @@ LUA;
                try {
                        $conn->multi( Redis::PIPELINE );
                        foreach ( $types as $type ) {
-                               $conn->lSize( $this->getQueueKey( 'l-unclaimed', $type ) );
+                               $conn->lLen( $this->getQueueKey( 'l-unclaimed', $type ) );
                        }
                        $res = $conn->exec();
                        if ( is_array( $res ) ) {