From f83aef1aab992f97e0f3bc663662055a28b85ee3 Mon Sep 17 00:00:00 2001 From: Timo Stark Date: Mon, 25 Apr 2022 12:57:07 +0200 Subject: [PATCH] Increased readtimeout for configuration endpoint. Closes: --- docs/changes.xml | 6 ++++++ src/nxt_controller.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/changes.xml b/docs/changes.xml index 65e9d200..12ad11f8 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -44,6 +44,12 @@ handled, and caused a use-after-free bug. + + +increased the applications' startup timeout. + + + diff --git a/src/nxt_controller.c b/src/nxt_controller.c index 7510d6f0..e1e9fade 100644 --- a/src/nxt_controller.c +++ b/src/nxt_controller.c @@ -725,7 +725,7 @@ static const nxt_event_conn_state_t nxt_controller_conn_read_state .timer_handler = nxt_controller_conn_read_timeout, .timer_value = nxt_controller_conn_timeout_value, - .timer_data = 60 * 1000, + .timer_data = 300 * 1000, };