jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/390297 )

Change subject: Make rcParamsTypeCheck.php not so much of a hatchet job
......................................................................


Make rcParamsTypeCheck.php not so much of a hatchet job

Change-Id: Ic3fe3fdf3385718f05e466f7014c7960fb394b15
---
M rcParamsTypeCheck.php
1 file changed, 5 insertions(+), 5 deletions(-)

Approvals:
  Addshore: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/rcParamsTypeCheck.php b/rcParamsTypeCheck.php
index 93941ef..b632d59 100644
--- a/rcParamsTypeCheck.php
+++ b/rcParamsTypeCheck.php
@@ -1,15 +1,15 @@
 <?php
 
 /**
- * Get the length of the job queue on all wikis in $wgConf
+ * Checks the type of recentchanges.rc_params on all wikis in $wgConf
  */
 
 require_once __DIR__ . '/WikimediaMaintenance.php';
 
-class GetJobQueueLengths extends Maintenance {
+class RCParamsTypeCheck extends Maintenance {
        function __construct() {
                parent::__construct();
-               $this->mDescription = '';
+               $this->mDescription = 'Checks the type of 
recentchanges.rc_params on all wikis in $wgConf';
        }
 
        function execute() {
@@ -25,9 +25,9 @@
                        }
                        $lb->reuseConnection( $db );
                }
-               $this->output( $count . "\n" );
+               $this->output( "$count wikis have recentchanges.rc_params that 
isn't a blob\n" );
        }
 }
 
-$maintClass = 'GetJobQueueLengths';
+$maintClass = 'RCParamsTypeCheck';
 require_once DO_MAINTENANCE;

-- 
To view, visit https://gerrit.wikimedia.org/r/390297
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic3fe3fdf3385718f05e466f7014c7960fb394b15
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/extensions/WikimediaMaintenance
Gerrit-Branch: master
Gerrit-Owner: Reedy <[email protected]>
Gerrit-Reviewer: Addshore <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to