Page MenuHomePhabricator

2017 wikitext editor emits many ready events with platform "other"
Closed, DuplicatePublic

Description

There is no "other" platform, so this shouldn't happen. This has persisted even after we fixed T203618, so it has a different cause.

select
    left(timestamp, 8) as day,
    count(*) as events
from log.Edit_17541122
where
    event_editor = "wikitext-2017" and
    event_action = "ready" and
    event_platform = "other" and
    timestamp >= "20180911"
group by left(timestamp, 8)

         day  events
0   20180911     235
1   20180912     207
2   20180913     233
3   20180914     239
4   20180915     245
5   20180916     239
6   20180917     221
7   20180918     222
8   20180919     238
9   20180920     269
10  20180921     268
11  20180922     280
12  20180923     274
13  20180924     191

Event Timeline

nshahquinn-wmf lowered the priority of this task from Medium to Low.
nshahquinn-wmf created this task.

I'd suspect this is going to be T205241, which @Esanders just put up a patch for.

Yup. When this has dropped to zero we should change that warning to an exception, but also force logging when in debug mode so devs can actually spot the errors.