https://bugzilla.wikimedia.org/show_bug.cgi?id=72197
Roan Kattouw <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Roan Kattouw <[email protected]> --- Specifically, what's broken is the way that it tries to derive the schema from the topic name. The things that are broken about it are: * It ends up trying to load schema..foo (double dot) * It documents that the topic must start with 'event.', and tries to strip that (leaving the dot), but none of the callers actually pass 'event.' * If the schema is not found (which due to the bugs above is virtually always the case), it fails silently with no warning logged anywhere It's been suggested that subscriber.js (and mw.track(), which it facilitates) just needs to be put out of its misery. VisualEditor is using it, but there's no good reason for that and I'm porting it to call EventLogging directly. However, a few things in MediaWiki are using mw.track(), and some of them would benefit from deferred loading (they may call mw.track() very early, before EventLogging has been loaded), so those would have to be looked at. -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
