Amin Ya

Results 1114 comments of Amin Ya

I have fixed the issue by passing ` .sync_protocol(SyncProtocol::V2)` before the build. ```rs let db = Builder::new_remote_replica( ldb_path, DATABASE_URL, DATABASE_AUTH_TOKEN, ) .sync_interval(Duration::from_secs(300)) .sync_protocol(SyncProtocol::V2) .build() .await?; db.sync().await?; ``` I also faced...

I was using the `auto` sync protocol as it's the default. I was on version `0.9.6` before that, which prompted me to upgrade. I can try to get the logs...

The issue is Wayland. See the solution here: https://github.com/warpdotdev/Warp/issues/5367#issuecomment-2408890422

The functions are private to the crate, and it seems all the callsites are accessing already existing indices. Is there an instance where the callsite is accessing an out of...