diff --git a/flytestdlib/storage/stow_store.go b/flytestdlib/storage/stow_store.go index 6c007d58466..701604d4370 100644 --- a/flytestdlib/storage/stow_store.go +++ b/flytestdlib/storage/stow_store.go @@ -266,7 +266,7 @@ func (s *StowStore) ReadRaw(ctx context.Context, reference DataReference) (io.Re if GetConfig().Limits.GetLimitMegabytes != 0 { if sizeBytes > GetConfig().Limits.GetLimitMegabytes*MiB { - return nil, errors.Errorf(ErrExceedsLimit, "limit exceeded. %.8fmb > %vmb.", float64(sizeBytes)/float64(MiB), GetConfig().Limits.GetLimitMegabytes) + return nil, errors.Errorf(ErrExceedsLimit, "limit exceeded. %.6fmb > %vmb.", float64(sizeBytes)/float64(MiB), GetConfig().Limits.GetLimitMegabytes) } }