From 9bc4258ab528506973c1d0df81e7cad0c26e0ed8 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Fri, 14 Aug 2015 16:32:04 -0700 Subject: [PATCH] Fixed IDE warning in doIsRootJobOldDuplicate() Change-Id: I95110dff0755336d9bb245503e4ae856171064fc --- includes/jobqueue/JobQueueRedis.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/jobqueue/JobQueueRedis.php b/includes/jobqueue/JobQueueRedis.php index e021d99b4d..a42d3f919c 100644 --- a/includes/jobqueue/JobQueueRedis.php +++ b/includes/jobqueue/JobQueueRedis.php @@ -446,6 +446,7 @@ LUA; // Get the last time this root job was enqueued $timestamp = $conn->get( $this->getRootJobCacheKey( $params['rootJobSignature'] ) ); } catch ( RedisException $e ) { + $timestamp = false; $this->throwRedisException( $conn, $e ); } -- 2.20.1