Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "XSI-1706/CP-51295: limit open TCP con's to 250 and increase socket backlog" #6164

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ocaml/xapi/xapi_globs.ml
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ let pbis_db_path = "/var/lib/pbis/db/registry.db"
let on_system_boot = ref false

(* Default backlog supplied to Unix.listen *)
let listen_backlog = 768
let listen_backlog = 128

(* Xapi script hooks root *)
let xapi_hooks_root = ref "/etc/xapi.d"
Expand Down Expand Up @@ -892,9 +892,9 @@ let header_total_timeout_tcp = ref 60.
let max_header_length_tcp = ref 1024
(* Maximum accepted size of HTTP headers in bytes (on TCP only) *)

let conn_limit_tcp = ref 250
let conn_limit_tcp = ref 800

let conn_limit_unix = ref 250
let conn_limit_unix = ref 1024

let xapi_globs_spec =
[
Expand Down