projects
/
project
/
omcproxy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f09056
)
Fix this typo. Change MaxRespTime from 0.1 second to 10 second
author
liy1
<yan.li1@technicolor.com>
Wed, 12 Apr 2023 17:10:40 +0000
(13:10 -0400)
committer
Álvaro Fernández Rojas
<noltari@gmail.com>
Thu, 27 Feb 2025 07:14:04 +0000
(08:14 +0100)
src/groups.c
patch
|
blob
|
history
diff --git
a/src/groups.c
b/src/groups.c
index 92f1db3f1e435e715f3f4226176f01c01124df39..9fb8b3fe0ed27d53b55e9acef627e67a23751bc2 100644
(file)
--- 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);
}