Skip to content

Commit

Permalink
[YUNIKORN-2034] Fix Partition API example data type (#358)
Browse files Browse the repository at this point in the history
Closes: #358

Signed-off-by: Craig Condit <[email protected]>
  • Loading branch information
targetoee authored and craigcondit committed Oct 26, 2023
1 parent b801a1a commit ac9ebe4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions docs/api/scheduler.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -121,8 +121,8 @@ Returns general information and statistics about a partition.
"Pending": 5,
"total": 20
},
"totalContainers": "20",
"totalNodes": "5"
"totalContainers": 20,
"totalNodes": 5
}
]
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ Yunikorn调度器能透过REST API来返回多个对象的信息
"Pending": 5,
"total": 10
},
"totalContainers": "0",
"totalNodes": "2"
"totalContainers": 0,
"totalNodes": 2
},
{
"clusterId": "mycluster",
Expand Down Expand Up @@ -117,8 +117,8 @@ Yunikorn调度器能透过REST API来返回多个对象的信息
"Pending": 5,
"total": 20
},
"totalContainers": "20",
"totalNodes": "5"
"totalContainers": 20,
"totalNodes": 5
}
]
```
Expand Down

0 comments on commit ac9ebe4

Please sign in to comment.