Skip to content

Commit

Permalink
fix(migrate-from-gcs): continue with next
Browse files Browse the repository at this point in the history
  • Loading branch information
alextes committed Nov 2, 2023
1 parent 6343b1e commit 4a72ca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/migrate-from-gcs/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ async fn main() -> anyhow::Result<()> {

if let Some(last_file) = progress.as_ref() {
info!(last_file = %last_file, "resuming migration");
day_bundle_metas.retain(|file| file.location.to_string() >= *last_file);
day_bundle_metas.retain(|file| file.location.to_string() > *last_file);
} else {
info!("starting migration from scratch");
}
Expand Down

0 comments on commit 4a72ca3

Please sign in to comment.