diff --git a/model/Event.php b/model/Event.php index a24764a46..60702810b 100644 --- a/model/Event.php +++ b/model/Event.php @@ -109,7 +109,9 @@ class EchoEvent { } // If the extra size is more than 50000 bytes, that means there is - // probably a problem with the design of this notification type + // probably a problem with the design of this notification type. + // There might be data loss if the size exceeds the DB column size of + // event_extra. if ( strlen( $obj->serializeExtra() ) > 50000 ) { wfDebugLog( __CLASS__, __FUNCTION__ . ': event extra data is too huge for ' . $info['type'] ); return false;