from taskqueue.py:

class TransientError(Error):
  """There was a transient error while accessing the queue.

  Please Try again later.
  """

When I think of transient error I think of like, power line transients
in a circuit :P  Probably not what they're talking about.  Maybe use
something like this:

try:
  taskqueue.add(whatever)
except TransientError:
  taskqueue.add(whatever)

On Jun 23, 10:01 pm, frog <[email protected]> wrote:
> "TransientError" - what does it mean? Can't find any information about
> it.
>
> ============
> #
> E 06-23 06:15PM 15.165
>
> Traceback (most recent call last):
>   File "/base/python_lib/versions/1/google/appengine/ext/webapp/
> __init__.py", line 501, in __call__
>     handler.get(*groups)
>   File "/base/data/home/apps/wea-srv/1.334418456097404432/
> wea_main.py", line 247, in get
>     taskqueue.add(url='/entry2db', params={'dbentry': pickle.dumps
> (dbentry)})
>   File "/base/python_lib/versions/1/google/appengine/api/labs/
> taskqueue/taskqueue.py", line 637, in add
>     return Task(*args, **kwargs).add()
>   File "/base/python_lib/versions/1/google/appengine/api/labs/
> taskqueue/taskqueue.py", line 495, in add
>     return Queue(queue_name).add(self)
>   File "/base/python_lib/versions/1/google/appengine/api/labs/
> taskqueue/taskqueue.py", line 563, in add
>     self.__TranslateError(e)
>   File "/base/python_lib/versions/1/google/appengine/api/labs/
> taskqueue/taskqueue.py", line 592, in __TranslateError
>     raise TransientError(error.error_detail)
> TransientError
>
> =============
>
> I've tried to run my app again and now there is no errors..
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to