Forward port of https://www.mediawiki.org/wiki/Special:Code/MediaWiki/105964
authorReedy <reedy@wikimedia.org>
Mon, 28 May 2012 14:43:06 +0000 (15:43 +0100)
committerReedy <reedy@wikimedia.org>
Mon, 28 May 2012 14:43:06 +0000 (15:43 +0100)
"Temporary workaround for bug 31576. The logs show that once every hour or so, a job runner somewhere in the cluster somehow loses all its magic words and starts hitting this case. Throwing an exception should kill the job runner before it does too much damage."

Currently keeps being re-imported into deployment branches...

Change-Id: I9d6ef2f4e0755a86476388508a8c08266fc94a9f

includes/MagicWord.php

index ba38f37..f838ad0 100644 (file)
@@ -306,8 +306,8 @@ class MagicWord {
                $wgContLang->getMagic( $this );
                if ( !$this->mSynonyms ) {
                        $this->mSynonyms = array( 'dkjsagfjsgashfajsh' );
-                       #throw new MWException( "Error: invalid magic word '$id'" );
-                       wfDebugLog( 'exception', "Error: invalid magic word '$id'\n" );
+                       throw new MWException( "Error: invalid magic word '$id'" );
+                       #wfDebugLog( 'exception', "Error: invalid magic word '$id'\n" );
                }
                wfProfileOut( __METHOD__ );
        }