Return true if this is an error hit as a result of hitting EXEC_TIME_LIMIT_S.
(error)
| 502 | |
| 503 | |
| 504 | def is_exec_time_limit_error(error): |
| 505 | """Return true if this is an error hit as a result of hitting EXEC_TIME_LIMIT_S.""" |
| 506 | return "expired due to execution time limit" in str(error) |