RYH61 commented on code in PR #9596:
URL: https://github.com/apache/iotdb/pull/9596#discussion_r1172019987
##########
server/src/main/java/org/apache/iotdb/db/mpp/plan/execution/config/sys/quota/ShowSpaceQuotaTask.java:
##########
@@ -75,12 +75,13 @@ public static void buildTSBlock(TSpaceQuotaResp resp,
SettableFuture<ConfigTaskR
Binary.valueOf(
spaceQuotaEntry.getValue().getDiskSize() == 0
? IoTDBConstant.QUOTA_UNLIMITED
- : spaceQuotaEntry.getValue().getDiskSize() + "M"));
+ : spaceQuotaEntry.getValue().getDiskSize() / 1024.0
+ "G"));
Review Comment:
done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]