summaryrefslogtreecommitdiff
path: root/doc/api/runners.md
diff options
context:
space:
mode:
authorTomasz Maczukin <tomasz@maczukin.pl>2018-03-06 16:14:23 +0100
committerTomasz Maczukin <tomasz@maczukin.pl>2018-03-28 13:58:15 +0200
commitf5e602ee0f8d95617adf6fb9b5a1a132a471fb12 (patch)
tree00e285a8a41fcca51d7b105e4db9837d421b8257 /doc/api/runners.md
parent1e138767a652d86458d38665b98c9c2e5d4c3cb8 (diff)
downloadgitlab-ce-f5e602ee0f8d95617adf6fb9b5a1a132a471fb12.tar.gz
Rename maximum_job_timeout to maximum_timeout
Diffstat (limited to 'doc/api/runners.md')
-rw-r--r--doc/api/runners.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/runners.md b/doc/api/runners.md
index 348fd499af2..f384ac57bfe 100644
--- a/doc/api/runners.md
+++ b/doc/api/runners.md
@@ -154,7 +154,7 @@ Example response:
],
"version": null,
"access_level": "ref_protected",
- "maximum_job_timeout": 3600
+ "maximum_timeout": 3600
}
```
@@ -175,7 +175,7 @@ PUT /runners/:id
| `run_untagged` | boolean | no | Flag indicating the runner can execute untagged jobs |
| `locked` | boolean | no | Flag indicating the runner is locked |
| `access_level` | string | no | The access_level of the runner; `not_protected` or `ref_protected` |
-| `maximum_job_timeout` | integer | no | Maximum timeout set when this Runner will handle the job |
+| `maximum_timeout` | integer | no | Maximum timeout set when this Runner will handle the job |
```
curl --request PUT --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/runners/6" --form "description=test-1-20150125-test" --form "tag_list=ruby,mysql,tag1,tag2"
@@ -214,7 +214,7 @@ Example response:
],
"version": null,
"access_level": "ref_protected",
- "maximum_job_timeout": null
+ "maximum_timeout": null
}
```