Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify runoncreate and run behaviors #950

Merged
merged 1 commit into from
May 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion website/content/v2.0/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ paths:
$ref: "#/definitions/job"
- in: query
name: runoncreate
description: If present, regardless of any value, causes the job to be run immediately after being succesfully created or updated.
description: |
If present, regardless of any value, causes the job to be run immediately after being succesfully created or updated.

This will cause the server to wait until the job has finished before returning a result.
required: false
schema:
type: boolean
Expand Down Expand Up @@ -115,6 +118,8 @@ paths:
post:
description: |
Executes a job.

The server will wait until the job has finished before returning a result.
operationId: runJob
tags:
- jobs
Expand Down