From 08a38b62edfc8af070b951f41cce71715e46f8cd Mon Sep 17 00:00:00 2001 From: Alexander Tesfamichael Date: Sat, 14 Oct 2023 00:33:21 +0200 Subject: [PATCH] fix: don't reset count --- src/bin/migrate-from-gcs.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/bin/migrate-from-gcs.rs b/src/bin/migrate-from-gcs.rs index 55b6ef0..c777e3e 100644 --- a/src/bin/migrate-from-gcs.rs +++ b/src/bin/migrate-from-gcs.rs @@ -221,8 +221,6 @@ async fn migrate_bundle( .as_secs(); print_migration_rate(payloads_migrated, elapsed); - - payloads_migrated = 0; // Reset the counter } }