diff options
author | Anton Titov <[email protected]> | 2019-05-15 09:33:19 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2019-05-15 09:33:19 +0300 |
commit | d4dde9d1549379abdb3c3933dbaa6bf69eaea0c6 (patch) | |
tree | 9f31d4a3f450d40e19ec2da10aa59717164442a2 | |
parent | aa80896b3c7c2dd1e43fbd986720192df22f033b (diff) | |
parent | 9151ad7299cace4046f02b0139c37f54807a8c8d (diff) |
Merge pull request #145 from lda/master
Correct limit service ID
-rw-r--r-- | service/limit/service.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/limit/service.go b/service/limit/service.go index 6cbc22be..6af571e2 100644 --- a/service/limit/service.go +++ b/service/limit/service.go @@ -6,7 +6,7 @@ import ( ) // ID defines controller service name. -const ID = "constrain" +const ID = "limit" // controllable defines the ability to attach rr controller. type controllable interface { |