Use testcontainers for integration tests

This commit is contained in:
Maurus Decimus
2026-06-11 18:08:13 +02:00
parent 2cc3903cda
commit e07fb0a7c1
14 changed files with 1277 additions and 245 deletions

View File

@@ -55,7 +55,8 @@ impl FdbStore {
}
Ok(ChunkedValue::None) => return Ok(None),
Err(err) => {
self.on_read_error(trx, err, &mut retry_count, start).await?;
self.on_read_error(trx, err, &mut retry_count, start)
.await?;
}
}
}
@@ -73,7 +74,8 @@ impl FdbStore {
Ok(ChunkedValue::Single(_) | ChunkedValue::Chunked { .. }) => return Ok(true),
Ok(ChunkedValue::None) => return Ok(false),
Err(err) => {
self.on_read_error(trx, err, &mut retry_count, start).await?;
self.on_read_error(trx, err, &mut retry_count, start)
.await?;
}
}
}