| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| >>> jobs, token = client.list_jobs() # API request | ||
| >>> [(job.job_id, job.type, job.created, job.state) for job in jobs] | ||
| ['e3344fba-09df-4ae0-8337-fddee34b3840', 'insert', (datetime.datetime(2015, 7, 23, 9, 30, 20, 268260, tzinfo=<UTC>), 'done')] | ||
| >>> [(job.nme, job.type, job.created, job.state) for job in jobs] |
The user-assigned 'name' is what is needed. Fixes #1399.
Addresses: #1469 (comment)
|
Only remaining issue is self.__class__ vs. self (fine to leave as-is). I'd still like a property name other than type though. WDYT? |
Sorry, something went wrong.
7b085f4 renames it to job_type. |
Sorry, something went wrong.
|
LGTM (pending Travis) |
Sorry, something went wrong.
* chore: add experimental blob functions retry and timeout * fix
| Back | FazBrowse Home | New Git URL |
Uses #1468 as a base.
Match actual usage patterns.
Closes #1398, #1399.