We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61aa6d0 commit 7e7bc0aCopy full SHA for 7e7bc0a
src/ops/storages/qdrant.rs
@@ -375,7 +375,6 @@ impl StorageFactoryBase for Arc<Factory> {
375
fn build(
376
self: Arc<Self>,
377
_name: String,
378
- _target_id: i32,
379
spec: Spec,
380
key_fields_schema: Vec<FieldSchema>,
381
value_fields_schema: Vec<FieldSchema>,
@@ -418,13 +417,11 @@ impl StorageFactoryBase for Arc<Factory> {
418
417
Ok(SetupStatusCheck::new(key, desired))
419
}
420
421
- fn will_keep_all_existing_data(
+ fn check_state_compatibility(
422
&self,
423
- _name: &str,
424
425
_desired: &SetupState,
426
_existing: &SetupState,
427
- ) -> Result<bool> {
428
- Ok(true)
+ ) -> Result<SetupStateCompatibility> {
+ Ok(SetupStateCompatibility::Compatible)
429
430
0 commit comments