File: fix-api-number-of-threads.patch

package info (click to toggle)
puppet-module-designate 25.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,544 kB
  • sloc: ruby: 3,196; python: 38; sh: 10; makefile: 10
file content (16 lines) | stat: -rw-r--r-- 439 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Fix API default number of threads
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2023-04-12

--- puppet-module-designate-20.3.0.orig/manifests/wsgi/uwsgi.pp
+++ puppet-module-designate-20.3.0/manifests/wsgi/uwsgi.pp
@@ -23,7 +23,7 @@
 #
 class designate::wsgi::uwsgi (
   $processes         = $facts['os_workers'],
-  $threads           = 32,
+  $threads           = 1,
   $listen_queue_size = 100,
 ){