From b2b578d831d2ed6de3df3f40f04ca5ef6f382519 Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Tue, 31 Mar 2020 14:34:02 +0200 Subject: [PATCH] fix: fix the limit of max size to 10TB Signed-off-by: Patrik Cyvoct --- scaleway/scaleway.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scaleway/scaleway.go b/scaleway/scaleway.go index 0a3f240..83a36b0 100644 --- a/scaleway/scaleway.go +++ b/scaleway/scaleway.go @@ -11,7 +11,7 @@ const ( // MinimumVolumeSizeInBytes represents the size of the smallest block volume on Scaleway MinimumVolumeSizeInBytes int64 = 1 * 1000 * 1000 * 1000 // MaximumVolumeSizeInBytes represents the size of the biggest block volume on Scaleway - MaximumVolumeSizeInBytes int64 = 1 * 1000 * 1000 * 1000 * 1000 + MaximumVolumeSizeInBytes int64 = 10 * 1000 * 1000 * 1000 * 1000 // MaxVolumesPerNode represents the number max of volumes attached to one node MaxVolumesPerNode = 16