-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(taskqueue): migrate to cloudtasks v2beta2 (#13)
- Loading branch information
1 parent
811303e
commit d15540f
Showing
13 changed files
with
425 additions
and
845 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
from pkg_resources import get_distribution | ||
__version__ = get_distribution('gcloud-aio-taskqueue').version | ||
|
||
from gcloud.aio.taskqueue.taskmanager import deserialize_task | ||
from gcloud.aio.taskqueue.taskmanager import FailFastError | ||
from gcloud.aio.taskqueue.taskmanager import TaskManager | ||
from gcloud.aio.taskqueue.taskqueue import LocalTaskQueue | ||
from gcloud.aio.taskqueue.taskqueue import TaskQueue | ||
from gcloud.aio.taskqueue.utils import decode | ||
from gcloud.aio.taskqueue.utils import encode | ||
|
||
|
||
__all__ = ['__version__', 'deserialize_task', 'FailFastError', 'TaskManager', | ||
'LocalTaskQueue', 'TaskQueue'] | ||
__all__ = ['__version__', 'decode', 'encode', 'FailFastError', 'TaskManager', | ||
'TaskQueue'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
class FailFastError(Exception): | ||
pass |
Oops, something went wrong.