diff --git a/CHANGELOG b/CHANGELOG index caef28b1..434b4a51 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.0-rc.8] - 2021-03-16 +## Added +* Add GUBER_GRPC_MAX_CONN_AGE_SEC to limit GRPC keep alive + ## [1.0.0-rc.7] - 2021-02-10 ## Changes * Fix leaky bucket algorithm returning remaining more than limit diff --git a/example.conf b/example.conf index e102b144..bd8b0fc1 100644 --- a/example.conf +++ b/example.conf @@ -17,11 +17,6 @@ GUBER_HTTP_ADDRESS=0.0.0.0:9980 # to guess at a non loopback interface GUBER_ADVERTISE_ADDRESS=localhost:9990 -# Time in seconds that the server will keep a client connection alive -# -# If value is zero (default) time is infinity -# GUBER_GRPC_MAX_CONN_AGE_SEC=30 - # Max size of the cache; This is the cache that holds # all the rate limits. The cache size will never grow # beyond this size. @@ -30,6 +25,10 @@ GUBER_ADVERTISE_ADDRESS=localhost:9990 # The name of the datacenter this gubernator instance is in. # GUBER_DATA_CENTER=datacenter1 +# Time in seconds that the GRPC server will keep a client connection alive. +# If value is zero (default) time is infinity +# GUBER_GRPC_MAX_CONN_AGE_SEC=30 + ############################ # Behavior Config diff --git a/version b/version index 54ed7b51..e9c62cfe 100644 --- a/version +++ b/version @@ -1 +1 @@ -1.0.0-rc.7 +1.0.0-rc.8