From b74233b9556e2f0afba84fe446d2ea04437bd753 Mon Sep 17 00:00:00 2001 From: Acha Bill Date: Mon, 18 Mar 2024 15:12:05 +0100 Subject: [PATCH] chore: update percentages --- pkg/check/redundancy/redundancy.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/check/redundancy/redundancy.go b/pkg/check/redundancy/redundancy.go index 05431ddc5..847c82e94 100644 --- a/pkg/check/redundancy/redundancy.go +++ b/pkg/check/redundancy/redundancy.go @@ -151,7 +151,7 @@ func (c *Check) uploadChunks(ctx context.Context, client *bee.Client, chunks []s case redundancy.INSANE: rate = 0.1 case redundancy.PARANOID: - rate = 0.35 + rate = 0.5 } } else { switch rLevel { @@ -162,7 +162,7 @@ func (c *Check) uploadChunks(ctx context.Context, client *bee.Client, chunks []s case redundancy.INSANE: rate = 0.35 case redundancy.PARANOID: - rate = 0.7 + rate = 0.9 } }