Simon Binder
Simon Binder
Do you see any errors in the service logs for the PowerSync service? These would typically have more details when there's a configuration error preventing the service from starting.
Oh right 😅 Are there any additional errors while the service starts up? Did this only start happening after you've adopted sync streams? Can you share the configuration YAML file...
Streams as a top-level key wouldn't work. The second definition looks correct to me though. In most of our setups we define sync rules in a separate file and then...
Looks like you also need to run `dart format`.
Thanks, and sorry for being slow to respond. We still need to investigate the crash in the test (see the failing github action). It looks like we might close the...
It looks like the failing health checks may be an analyzer issue? Or at least I don't understand how these changes could cause the error from the logs.
I believe the Linux tests are failing here because we arbitrarily pick one tool out of the list returned (`CompilerResolver._tryLoadToolFromNativeToolchain` picks the first). So now that we find additional NDK...
Sorry, I meant arbitrary in the sense that we pick the first one instead of one that might make more sense semantically :D I don't think there's a race here,...
We currently have a peer-dependency on `"@op-engineering/op-sqlite": "^13.0.0 || ^14.0.0"`. Given that we don't seem to be affected by any 15.x changes, changing that to include `|| ^15.0.0` sounds good...
So for context, I maintain a sqlite3 library for Dart that, among other things, offers help implementing the [12-step procedure](https://www.sqlite.org/lang_altertable.html#otheralter) suggested to emulate arbitrary `ALTER TABLE` statements by re-creating tables...