bendk

Results 140 issues of bendk

Right now askama uses a module as the source of filter functions. This works well in general, but has issues if the filter requires some state. In that case you'd...

Have both of these as separate crates adds extra complexity to the API. For example #5083 changed things so that `sync15` re-exports some of the `sync15-traits` functions, this means that...

A few months ago we had a [Fenix Crasher](https://github.com/mozilla-mobile/android-components/issues/11251) when it was trying to update a login when there was a duplicate in the database. We addressed this by preventing...

When reviewing the logins sentry data, I saw a lot of events like [this one](https://sentry.io/organizations/mozilla/discover/fenix-beta:dfe36319caae4859a7d8b023d00b4060/?field=issue&field=title&field=project&field=user.display&field=timestamp&name=All+Events&project=6295551&query=logins&sort=-timestamp&statsPeriod=24h&yAxis=count%28%29) with this error. We should investigate this and either fix the code or stop reporting...

As part of the error handling, I added [code to track `QueryReturnedNoRows`](https://github.com/mozilla/application-services/blob/d163d0561fe41043491b9a19c02e66c5ab25f655/components/places/src/ffi.rs#L410) when deleting history (#4856). Since then I've been checking Sentry and trying to find the error, but I...

Places has a `run_maintenance()` function, which is intended to be called during idle time. It should finish in a relatively quick time in order to not block places queries in...

Recently, we've been discussing how to improve how we use Glean to capture error telemetry. After taking a quick survey of our current error telemetry, I think our current code...

Once #4930 and #4980 are merged, the next step is to switch away from `log::error!()` to `report_error!()` and `breadcrumb()!` from the `error_support` crate. This means giving some thought to how...

We're currently getting about [100-150 of these errors a day in sentry](https://sentry.prod.mozaws.net/operations/firefox/issues/19455994/?query=is%3Aunresolved). That's not a huge amount, but it seems like we should do something about it. - If these...

There are a couple updates that I'd like to make to our taskcluster code: - Combine [all these ENV setting statements](https://github.com/mozilla/application-services/blob/main/taskcluster/docker/linux/Dockerfile#L23-L41) into 1 line. That way we aren't creating so...