From ef1719209ecbc60ec714d283455e47ac040b7a79 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Sat, 5 Sep 2020 12:08:33 +0000 Subject: [PATCH] Add latest changes from gitlab-org/gitlab@master --- doc/development/cicd/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/development/cicd/index.md b/doc/development/cicd/index.md index 38f7c391313..28cf67105f6 100644 --- a/doc/development/cicd/index.md +++ b/doc/development/cicd/index.md @@ -100,7 +100,7 @@ A job with the `created` state won't be seen by the Runner yet. To make it possi When the Runner is connected, it requests the next `pending` job to run by polling the server continuously. NOTE: **Note:** -API endpoints used by the Runner to interact with GitLab are defined in [`lib/api/runner.rb`](https://gitlab.com/gitlab-org/gitlab/blob/master/lib/api/runner.rb) +API endpoints used by the Runner to interact with GitLab are defined in [`lib/api/ci/runner.rb`](https://gitlab.com/gitlab-org/gitlab/blob/master/lib/api/ci/runner.rb) After the server receives the request it selects a `pending` job based on the [`Ci::RegisterJobService` algorithm](#ciregisterjobservice), then assigns and sends the job to the Runner. -- GitLab