Adam Rutkowski

Results 65 comments of Adam Rutkowski

Livebook smart cell :)

@Bcdo yup, since there is no snippet and no support for the callback I mentioned, our headless browser test can't tell if the test event was sent, thus making verification...

@Barbapapazes hi, what sort of documentation do you require? I described the implementation details in the top post of this thread. Let me know if anything's unclear. Thanks.

You can try issuing a HTTP request to `GET /api/system`

doesn't have to be con_cache specifically, since we're preloading the module in test_helper now

What I did to track it down previously: 1. Run iex in MIX_ENV=test 2. Set up flameon https://github.com/DockYard/flame_on/tree/main - looking at how @ruslandoga did it at https://github.com/ruslandoga/plausible/pull/301 3. Run tests...

Hi, thanks for the plugin! Came here to say that I'd love common programming _symbols_ to be highlighted, such as `{`, `-` etc.

What is the function argument doing? (store_fun)

Data migration for CE is failing: https://github.com/plausible/analytics/actions/runs/10612221725/job/29413425673?pr=4459 This is because `Plausible.DataMigration.SiteImports` relies on `Site` schema that gets migrated later on. How should we proceed in such case? cc @zoldar @ruslandoga

hmm how about: ```diff diff --git a/lib/plausible/data_migration/site_imports.ex b/lib/plausible/data_migration/site_imports.ex index 8aaa03f3e..749fbeaa2 100644 --- a/lib/plausible/data_migration/site_imports.ex +++ b/lib/plausible/data_migration/site_imports.ex @@ -29,6 +29,7 @@ defmodule Plausible.DataMigration.SiteImports do sites_with_only_legacy_import = from(s in Site, as: :site, +...