We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b3c9a7 commit 6be91d4Copy full SHA for 6be91d4
libsql/src/sync.rs
@@ -300,9 +300,6 @@ impl SyncContext {
300
.ok_or_else(|| SyncError::JsonValue(generation.clone()))?;
301
return Ok(PullResult::EndOfGeneration { max_generation: generation as u32 });
302
}
303
- if res.status() == StatusCode::BAD_REQUEST {
304
- return Err(SyncError::PullFrame(res.status(), "Bad Request".to_string()).into());
305
- }
306
// If we've retried too many times or the error is not a server error,
307
// return the error.
308
if nr_retries > max_retries || !res.status().is_server_error() {
0 commit comments