Browse Source

Idle timeout counter updated value

7 seems better than 5.
Yann Weber 4 years ago
parent
commit
47a4e99e5b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/conf.c

+ 1
- 1
src/conf.c View File

@@ -48,7 +48,7 @@ void default_conf()
48 48
 	PyFCGI_conf.verbosity = 0;
49 49
 	PyFCGI_conf.pool_timeout = 5;
50 50
 	PyFCGI_conf.worker_timeout = 3;
51
-	PyFCGI_conf.worker_gc_timeout = 5;
51
+	PyFCGI_conf.worker_gc_timeout = 7;
52 52
 }
53 53
 
54 54
 int parse_args(int argc, char *argv[])

Loading…
Cancel
Save