From d3df52a2b530d3c29188788d5a1de5f18f9a8b00 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 22 Oct 2015 14:00:06 -0700 Subject: [PATCH] Fix ChangeTag "lockTSE" values as INF does not actually work Change-Id: If6c6b034be60ffc8b22b67cef12e5d701a871788 --- includes/changetags/ChangeTags.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/changetags/ChangeTags.php b/includes/changetags/ChangeTags.php index 5c70c995a2..bbb5c8c4fa 100644 --- a/includes/changetags/ChangeTags.php +++ b/includes/changetags/ChangeTags.php @@ -1101,7 +1101,7 @@ class ChangeTags { }, array( 'checkKeys' => array( wfMemcKey( 'active-tags' ) ), - 'lockTSE' => INF, + 'lockTSE' => 300, 'pcTTL' => 30 ) ); @@ -1147,7 +1147,7 @@ class ChangeTags { }, array( 'checkKeys' => array( wfMemcKey( 'valid-tags-db' ) ), - 'lockTSE' => INF, + 'lockTSE' => 300, 'pcTTL' => 30 ) ); @@ -1175,7 +1175,7 @@ class ChangeTags { }, array( 'checkKeys' => array( wfMemcKey( 'valid-tags-hook' ) ), - 'lockTSE' => INF, + 'lockTSE' => 300, 'pcTTL' => 30 ) ); @@ -1243,7 +1243,7 @@ class ChangeTags { }, array( 'checkKeys' => array( wfMemcKey( 'change-tag-statistics' ) ), - 'lockTSE' => INF, + 'lockTSE' => 300, 'pcTTL' => 30 ) ); -- 2.20.1