fix in example config

This commit is contained in:
Chris kerr 2024-09-02 17:03:46 -04:00
parent aebd1d89e4
commit 6737718f08
2 changed files with 1 additions and 5 deletions

View File

@ -39,19 +39,15 @@ rate_limit:
# Rate limits for different event categories # Rate limits for different event categories
category_limits: category_limits:
ephemeral: ephemeral:
kind: 0
limit: 100 # Events per second limit: 100 # Events per second
burst: 200 # Allowed burst burst: 200 # Allowed burst
parameterized_replaceable: parameterized_replaceable:
kind: 0
limit: 5 limit: 5
burst: 10 burst: 10
regular: regular:
kind: 0
limit: 25 limit: 25
burst: 50 burst: 50
replaceable: replaceable:
kind: 0
limit: 10 limit: 10
burst: 20 burst: 20

View File

@ -49,4 +49,4 @@ func WatchConfigFile(filePath string, restartChan chan<- struct{}) {
log.Println("Error watching file:", err) log.Println("Error watching file:", err)
} }
} }
} }