This is an automated email from the ASF dual-hosted git repository.

ccondit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/yunikorn-site.git


The following commit(s) were added to refs/heads/master by this push:
     new ac9ebe44df [YUNIKORN-2034] Fix Partition API example data type (#358)
ac9ebe44df is described below

commit ac9ebe44df37aa223c9e01edcb972ffd60b50eef
Author: targetoee <[email protected]>
AuthorDate: Thu Oct 26 11:54:22 2023 -0500

    [YUNIKORN-2034] Fix Partition API example data type (#358)
    
    Closes: #358
    
    Signed-off-by: Craig Condit <[email protected]>
---
 docs/api/scheduler.md                                             | 8 ++++----
 .../zh-cn/docusaurus-plugin-content-docs/current/api/scheduler.md | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/docs/api/scheduler.md b/docs/api/scheduler.md
index 494d2d3cc2..eb5c7b5561 100644
--- a/docs/api/scheduler.md
+++ b/docs/api/scheduler.md
@@ -86,8 +86,8 @@ Returns general information and statistics about a partition.
             "Pending": 5,
             "total": 10
         },
-        "totalContainers": "0",
-        "totalNodes": "2"
+        "totalContainers": 0,
+        "totalNodes": 2
     },
     {
         "clusterId": "mycluster",
@@ -121,8 +121,8 @@ Returns general information and statistics about a 
partition.
             "Pending": 5,
             "total": 20
         },
-        "totalContainers": "20",
-        "totalNodes": "5"
+        "totalContainers": 20,
+        "totalNodes": 5
     }
 ]
 ```
diff --git a/i18n/zh-cn/docusaurus-plugin-content-docs/current/api/scheduler.md 
b/i18n/zh-cn/docusaurus-plugin-content-docs/current/api/scheduler.md
index 19b9327958..a0bbfa8714 100644
--- a/i18n/zh-cn/docusaurus-plugin-content-docs/current/api/scheduler.md
+++ b/i18n/zh-cn/docusaurus-plugin-content-docs/current/api/scheduler.md
@@ -82,8 +82,8 @@ Yunikorn调度器能透过REST API来返回多个对象的信息
             "Pending": 5,
             "total": 10
         },
-        "totalContainers": "0",
-        "totalNodes": "2"
+        "totalContainers": 0,
+        "totalNodes": 2
     },
     {
         "clusterId": "mycluster",
@@ -117,8 +117,8 @@ Yunikorn调度器能透过REST API来返回多个对象的信息
             "Pending": 5,
             "total": 20
         },
-        "totalContainers": "20",
-        "totalNodes": "5"
+        "totalContainers": 20,
+        "totalNodes": 5
     }
 ]
 ```


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to