Update docs/user_guide/ratelimiter.md

Co-authored-by: Dany Gagnon <ddanygagnon@gmail.com>
This commit is contained in:
Xia Lei 2024-03-08 10:42:11 +08:00 committed by GitHub
parent 99ed87f309
commit 461d384966
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -63,7 +63,7 @@ impl LB {
// global limiter
lazy_static! {
static ref RATE_LIMITER_MAP: Arc<Mutex<HashMap<String, Rate>>> = {
static ref RATE_LIMITER_MAP: Arc<Mutex<HashMap<String, Rate>>> = {
Arc::new(Mutex::new(HashMap::new()))
};
}