From 0b195b4589e4ec689af7ddca27dc051716ecee78 Mon Sep 17 00:00:00 2001 From: Noor Date: Fri, 6 Jun 2025 16:25:26 +0530 Subject: [PATCH] minor fix update storage unit from MB to GB on app app node filter and resources --- proto/sgx/app.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/sgx/app.proto b/proto/sgx/app.proto index 80892dc..f7508c7 100644 --- a/proto/sgx/app.proto +++ b/proto/sgx/app.proto @@ -65,7 +65,7 @@ message ListAppContractsReq { message AppNodeFilters { uint32 vcpus = 1; uint32 memory_mb = 2; - uint32 storage_mb = 3; + uint32 storage_gb = 3; string country = 4; string region = 5; string city = 6; @@ -111,7 +111,7 @@ message AppNodeResources { uint32 avail_no_of_port = 2; uint32 avail_vcpus = 3; uint32 avail_memory_mb = 4; - uint32 avail_storage_mb = 5; + uint32 avail_storage_gb = 5; uint32 max_ports_per_app = 6; }