From 6829d51f75be5d20a4504ea9e1c1ec61b0f82278 Mon Sep 17 00:00:00 2001 From: Unbit Date: Fri, 9 Oct 2015 07:46:19 +0200 Subject: [PATCH] added fastrouter-max-retries --- plugins/fastrouter/fastrouter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/fastrouter/fastrouter.c b/plugins/fastrouter/fastrouter.c index fb16a395..e1455862 100644 --- a/plugins/fastrouter/fastrouter.c +++ b/plugins/fastrouter/fastrouter.c @@ -67,6 +67,7 @@ static struct uwsgi_option fastrouter_options[] = { {"fastrouter-emperor-socket", required_argument, 0, "set the emperor command socket that will receive spawn commands", uwsgi_opt_set_str, &ufr.cr.emperor_socket, 0}, {"fastrouter-defer-connect-timeout", required_argument, 0, "set fastrouter defer connect timeout", uwsgi_opt_set_int, &ufr.cr.defer_connect_timeout, 0}, + {"fastrouter-max-retries", required_argument, 0, "set fastrouter max retry attempts", uwsgi_opt_set_int, &ufr.cr.max_retries, 0}, UWSGI_END_OF_OPTIONS };