From 07d6564e79603f63102568b0533e5cfffb9971b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 30 Dec 2018 12:40:58 +0100 Subject: [PATCH] module/mpd: raise connection retry interval from 1s -> 10s --- modules/mpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mpd.c b/modules/mpd.c index cef26b7..0d1f4d0 100644 --- a/modules/mpd.c +++ b/modules/mpd.c @@ -283,7 +283,7 @@ run(struct module_run_context *ctx) break; struct pollfd fds[] = {{.fd = ctx->abort_fd, .events = POLLIN}}; - int res = poll(fds, 1, 1 * 1000); + int res = poll(fds, 1, 10 * 1000); if (res == 1) { assert(fds[0].revents & POLLIN);