From 7aeece632a06891c4a15cc286e199697c59e5a9a Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Sat, 2 Mar 2019 21:23:37 +0100 Subject: [PATCH] tvh thread: increase the default watchdog timeout to 15 seconds --- src/tvh_thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tvh_thread.c b/src/tvh_thread.c index d942fbda4..70cfcb69d 100644 --- a/src/tvh_thread.c +++ b/src/tvh_thread.c @@ -501,7 +501,7 @@ static void *tvh_thread_watch_thread(void *aux) const char *s; s = getenv("TVHEADEND_THREAD_WATCH_LIMIT"); - limit = s ? atol(s) : 5; + limit = s ? atol(s) : 15; limit = MINMAX(limit, 5, 120); while (!atomic_get(&tvhwatch_done)) { pthread_mutex_lock(&thrwatch_mutex); -- 2.47.2