mozilla / active-data-recipes

A repository of various activedata queries and recipes
Mozilla Public License 2.0
8 stars 24 forks source link

try_usage is busted on new cluster #32

Closed klahnakoski closed 5 years ago

klahnakoski commented 6 years ago

The try_usage recipe does not work using the new cluster. The data it needs is there, but {"select":"changeset.description"} is returning null.

{
    "from":"repo",
    "select":["push.user","changeset"],
    "where":{"and":[
        {"eq":{"branch.name":"try"}},
        {"gte":{"push.date":{"date":"today-week"}}}
    ]},
    "sort":{"push.user":"desc"},
    "limit":10
}

The repo is not storing the description separate from the whole document. I will look into this

ahal commented 5 years ago

This will hopefully just be fixed in upstream ActiveData and no action will be necessary here. But I'll leave it open to help keep track of it.

ahal commented 5 years ago

This got fixed upstream, thanks Kyle!