vote up 0 vote down star

Google app engine has this useful little function in its db class,

db.run_in_transaction()

Which is suppose to garentee that your method will be rolled back if an exception is raised. "If the function raises an exception, the transaction is rolled back."

What happens if my request times out in the middle of its execution? Will it roll back?

flag

1 Answer

vote up 2 vote down

Yes, the timeout raises an exception, so that also will mean a rollback.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.