Skip to content

Commit

Permalink
fix(conf): fix the default value of upstream_keepalive_max_requests (#…
Browse files Browse the repository at this point in the history
…12643)

This commit fixes the discrepancy between the default value of
upstream_keepalive_max_requests in the Kong.conf comments and the actual value
in kong/templates/kong_defaults.lua.

(cherry picked from commit c5ed954)
  • Loading branch information
chobits authored and github-actions[bot] committed Feb 27, 2024
1 parent 7196d5a commit 9a301c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
message: |
Fixed default value in kong.conf.default documentation from 1000 to 10000
for upstream_keepalive_max_requests option.
type: bugfix
scope: Configuration
2 changes: 1 addition & 1 deletion kong.conf.default
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,7 @@
# each upstream request to open a new
# connection.

#upstream_keepalive_max_requests = 1000 # Sets the default maximum number of
#upstream_keepalive_max_requests = 10000 # Sets the default maximum number of
# requests than can be proxied upstream
# through one keepalive connection.
# After the maximum number of requests
Expand Down

0 comments on commit 9a301c3

Please sign in to comment.