image - Has anyone seen GAE fail to respect the deadline attribute of an RPC? -


i timeouts when trying transforms or resizes on large images using image.execute_transforms_async (https://developers.google.com/appengine/docs/python/images/imageclass#image_execute_transforms_async).

i tried adding deadline create_rpc call, seems ignore it. here's code snippet:

image_data_rpc = images.create_rpc(deadline=5) image.execute_transforms_async(output_encoding=image_output_type, quality=95, rpc=image_data_rpc)

i've seen work urlfetch, wonder if i'm missing here.

we figured out. wasn't deadline wasn't being respected, call execute_transforms_async timing out. call image_data_rpc.get_result() occurring after deadline exceeded error. still trying figure out cause of timeout on execute_transforms_async, deadline parameter seems working expected.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -