Drop progress reporting from banner tracker reset

The ResetProgressFunc callback streamed per-phase messages from inside
the reset transaction, so a rollback could leave already-printed
progress describing work that never committed. Remove the callback
entirely; the final result summary printed by proboctl still conveys
the outcome without the misleading intermediate output.

Signed-off-by: Émile Ré <emile@probo.com>
This commit is contained in:
Émile Ré
2026-06-10 18:28:21 +02:00
parent ed9831a734
commit 2db063bc60
3 changed files with 4 additions and 40 deletions

View File

@@ -85,7 +85,7 @@ func TestResetBannerTrackers_FullRebuild(t *testing.T) {
return nil
}))
result, err := ResetBannerTrackers(ctx, client, fx.scope, fx.banner.ID, false, nil, nil)
result, err := ResetBannerTrackers(ctx, client, fx.scope, fx.banner.ID, false, nil)
require.NoError(t, err)
require.Equal(t, 1, result.GlobsDecomposed)