Docs: Add scheduled to job.get_status() (#1493)

This commit is contained in:
rpkak 2021-06-16 12:26:16 +02:00 committed by GitHub
parent 819d0498c7
commit 29d02c0798
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ print('Status: %s' % job.get_status())
``` ```
Some interesting job attributes include: Some interesting job attributes include:
* `job.get_status()` Possible values are `queued`, `started`, `deferred`, `finished`, `stopped`, and `failed` * `job.get_status()` Possible values are `queued`, `started`, `deferred`, `finished`, `stopped`, `scheduled` and `failed`
* `job.origin` queue name of this job * `job.origin` queue name of this job
* `job.func_name` * `job.func_name`
* `job.args` arguments passed to the underlying job function * `job.args` arguments passed to the underlying job function