diff --git a/pkg/storage/common/common.go b/pkg/storage/common/common.go index 1e8e7debb..d5629578f 100644 --- a/pkg/storage/common/common.go +++ b/pkg/storage/common/common.go @@ -1007,7 +1007,7 @@ func (gen *DedupeTaskGenerator) Next() (scheduler.Task, error) { // if no digests left, then mark the task generator as done if gen.digest == "" { - gen.Log.Info().Str("component", "dedupe").Msg("finished") + gen.Log.Info().Str("component", "dedupe").Msg("no digests left, finished") gen.done = true diff --git a/test/blackbox/restore_s3_blobs.bats b/test/blackbox/restore_s3_blobs.bats index 26959a8f0..3c43d4bb3 100644 --- a/test/blackbox/restore_s3_blobs.bats +++ b/test/blackbox/restore_s3_blobs.bats @@ -131,7 +131,7 @@ function teardown_file() { start=`date +%s` echo "waiting for restoring blobs task to finish" >&3 - run wait_for_string "dedupe rebuild: finished" ${ZOT_LOG_FILE} "5m" + run wait_for_string "no digests left, finished" ${ZOT_LOG_FILE} "5m" [ "$status" -eq 0 ] end=`date +%s` diff --git a/test/blackbox/sync_harness.bats b/test/blackbox/sync_harness.bats index d4f902a7d..85ad6ca58 100644 --- a/test/blackbox/sync_harness.bats +++ b/test/blackbox/sync_harness.bats @@ -108,7 +108,7 @@ function teardown_file() { start=`date +%s` echo "waiting for sync to finish" >&3 - run wait_for_string "sync: finished syncing all repos" ${ZOT_LOG_FILE} "5m" + run wait_for_string "finished syncing all repos" ${ZOT_LOG_FILE} "5m" [ "$status" -eq 0 ] end=`date +%s`