in src/functions_framework/request_timeout.py [0:0]
def __exit__(self, exc_type, exc_val, exc_tb):
self.timer.cancel()
if exc_type is RequestTimeoutException:
logger.warning(
"Request handling exceeded {0} seconds timeout; terminating request handling...".format(
self.seconds
),
exc_info=(exc_type, exc_val, exc_tb),
)
return False