You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Commit d7ce713 activates PHP assertions by default. These are not supported in RepoAuthoritative mode.
For this reason. the oss-performance MediaWiki benchmark fails:
Fatal error: assert() is not supported: assert with strings argument in RepoAuthoritative mode in /tmp/hhvm-nginxHMBBMk/mediawiki/includes/parser/Preprocessor_Hash.php on line 492
Line 492 in Preprocessor_Hash.php contains, as expected, an assert() with string arguments:
// A heading must be open, otherwise \n wouldn't have been in the search listassert( '$piece->open == "\n"' );
$part = $piece->getCurrentPart();
The text was updated successfully, but these errors were encountered:
cc @paulbiss: I assume there's a way to disable it? Possibly should also disable it by default when building repos/using repo auth mode, but not sure that silent behavior change would be a good thing.
fredemmott
changed the title
MediaWiki Failure
Asserts active by default in nightlies, incompatible with repo auth
Jan 19, 2016
Commit d7ce713 activates PHP assertions by default. These are not supported in RepoAuthoritative mode.
For this reason. the oss-performance MediaWiki benchmark fails:
Line 492 in Preprocessor_Hash.php contains, as expected, an assert() with string arguments:
The text was updated successfully, but these errors were encountered: