minor fix

update storage unit from MB to GB on app app node filter and resources
This commit is contained in:
Noor 2025-06-06 16:25:26 +05:30
parent 005677153b
commit 0b195b4589
Signed by: noormohammedb
GPG Key ID: D83EFB8B3B967146

@ -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;
}