From ea324de03e1b95af9c336614d65805524161d879 Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Tue, 7 May 2019 19:24:03 +0200 Subject: [PATCH] Update function-timeouts.md --- fn/develop/function-timeouts.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fn/develop/function-timeouts.md b/fn/develop/function-timeouts.md index 22d13ae..f7ac263 100644 --- a/fn/develop/function-timeouts.md +++ b/fn/develop/function-timeouts.md @@ -9,9 +9,9 @@ for more details. So, what are those timeouts and what are they used for? This time of timeouts defines for how long function execution may happen before it'll be terminated along with notifying caller that function terminated with error - timed out. -```json +``` { - "route":{ + "route": { ... "timeout": 30, ... @@ -26,9 +26,9 @@ It starts at the beginning of the function call. This type of timeout defines for how long should hot function hang around before its termination in case if there are no incoming requests. -```json +``` { - "route":{ + "route": { ... "idle_timeout": 30, ...