mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-11-04 01:46:28 +00:00 
			
		
		
		
	fix clippy
This commit is contained in:
		
				
					committed by
					
						
						Clément Renault
					
				
			
			
				
	
			
			
			
						parent
						
							7e52f1effb
						
					
				
				
					commit
					9c00b159ba
				
			@@ -258,18 +258,15 @@ pub fn swap_index_uid_in_task(task: &mut Task, swap: (&str, &str)) {
 | 
				
			|||||||
        | K::DumpCreation { .. }
 | 
					        | K::DumpCreation { .. }
 | 
				
			||||||
        | K::Snapshot => {}
 | 
					        | K::Snapshot => {}
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
    match &mut task.details {
 | 
					    if let Some(Details::IndexSwap { swaps }) = &mut task.details {
 | 
				
			||||||
        Some(Details::IndexSwap { swaps }) => {
 | 
					        for (lhs, rhs) in swaps.iter_mut() {
 | 
				
			||||||
            for (lhs, rhs) in swaps.iter_mut() {
 | 
					            if lhs == swap.0 || lhs == swap.1 {
 | 
				
			||||||
                if lhs == swap.0 || lhs == swap.1 {
 | 
					                index_uids.push(lhs);
 | 
				
			||||||
                    index_uids.push(lhs);
 | 
					            }
 | 
				
			||||||
                }
 | 
					            if rhs == swap.0 || rhs == swap.1 {
 | 
				
			||||||
                if rhs == swap.0 || rhs == swap.1 {
 | 
					                index_uids.push(rhs);
 | 
				
			||||||
                    index_uids.push(rhs);
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        _ => (),
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    for index_uid in index_uids {
 | 
					    for index_uid in index_uids {
 | 
				
			||||||
        if index_uid == swap.0 {
 | 
					        if index_uid == swap.0 {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -40,7 +40,8 @@ pub fn default_snapshot_settings_for_test<'a>(
 | 
				
			|||||||
        Cow::Owned(format!("{counter}"))
 | 
					        Cow::Owned(format!("{counter}"))
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    let store_whole_snapshot = std::env::var("MEILI_TEST_FULL_SNAPS").unwrap_or("false".to_owned());
 | 
					    let store_whole_snapshot =
 | 
				
			||||||
 | 
					        std::env::var("MEILI_TEST_FULL_SNAPS").unwrap_or_else(|_| "false".to_owned());
 | 
				
			||||||
    let store_whole_snapshot: bool = store_whole_snapshot.parse().unwrap();
 | 
					    let store_whole_snapshot: bool = store_whole_snapshot.parse().unwrap();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    (settings, snap_name, store_whole_snapshot)
 | 
					    (settings, snap_name, store_whole_snapshot)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user