src/api2/node/tasks.rs: add "running" filter to list only running tasks

This commit is contained in:
Dietmar Maurer
2019-12-11 10:52:27 +01:00
parent 8560fe3e5f
commit 6d04612955
2 changed files with 4 additions and 1 deletions

View File

@ -1980,7 +1980,7 @@ fn task_list(param: Value) -> Result<Value, Error> {
let limit = param["limit"].as_u64().unwrap_or(50) as usize;
let args = json!({ "start": 0, "limit": limit, "userfilter": repo.user()});
let args = json!({ "running": true, "start": 0, "limit": limit, "userfilter": repo.user()});
let result = client.get("api2/json/nodes/localhost/tasks", Some(args)).await?;
let data = &result["data"];