From: liy1 Date: Wed, 12 Apr 2023 17:10:40 +0000 (-0400) Subject: Fix this typo. Change MaxRespTime from 0.1 second to 10 second X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=21ab1d5df01d427601f777442115cdb5360a509c;p=project%2Fomcproxy.git Fix this typo. Change MaxRespTime from 0.1 second to 10 second --- diff --git a/src/groups.c b/src/groups.c index 92f1db3..9fb8b3f 100644 --- a/src/groups.c +++ b/src/groups.c @@ -183,9 +183,9 @@ void groups_init(struct groups *groups) avl_init(&groups->groups, compare_groups, false, NULL); groups->timer.cb = expire_groups; - groups_update_config(groups, false, OMGP_TIME_PER_SECOND / 10, + groups_update_config(groups, false, OMGP_TIME_PER_SECOND * 10, 125 * OMGP_TIME_PER_SECOND, 2); - groups_update_config(groups, true, OMGP_TIME_PER_SECOND / 10, + groups_update_config(groups, true, OMGP_TIME_PER_SECOND * 10, 125 * OMGP_TIME_PER_SECOND, 2); }