Skip to content

Commit fdf5b2e

Browse files
authored
Merge pull request #1395 from 3scale/THREESCALE-7941
THREESCALE-7941 - Review warning displayed in apicast logs about variables_hash_max_size & variables_hash_bucket_size
2 parents e851732 + fc3794c commit fdf5b2e

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

CHANGELOG.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Fixed
1111

1212
- In boot mode on `init_worker` check configuration expiration [PR #1399](https://github.com/3scale/APIcast/pull/1399) [THREESCALE-9003](https://issues.redhat.com/browse/THREESCALE-9003)
13+
- Removes the warning message at the bootstrap [PR #1398](https://github.com/3scale/APIcast/pull/1398) [THREESCALE-7942](https://issues.redhat.com/browse/THREESCALE-7942)
14+
- Set NGiNX variable variables_hash_max_size to 2048 to avoid startup warning [PR #1395](https://github.com/3scale/APIcast/pull/1395) [THREESCALE-7941](https://issues.redhat.com/browse/THREESCALE-7941)
1315

1416
### Added
1517

@@ -22,10 +24,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2224

2325
- `APICAST_LOAD_SERVICES_WHEN_NEEDED` is dropped and the configuration is fetched "when needed" by default [PR #1352](https://github.com/3scale/APIcast/pull/1352) [THREESCALE-8508](https://issues.redhat.com/browse/THREESCALE-8508)
2426

25-
### Fixed
26-
27-
- Removes the warning message at the bootstrap [PR #1398](https://github.com/3scale/APIcast/pull/1398) [THREESCALE-7942](https://issues.redhat.com/browse/THREESCALE-7942)
28-
2927
## [3.13.2] 2023-02-21
3028

3129
### Fixed

gateway/conf/nginx.conf.liquid

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ http {
4343
tcp_nodelay on;
4444
server_tokens off;
4545

46-
46+
variables_hash_max_size 2048;
4747

4848
proxy_cache_path /tmp/cache levels=1:2 keys_zone=apicast_cache:10m;
4949
# Enabling the Lua code cache is strongly encouraged for production use

0 commit comments

Comments
 (0)