fix: call the correct tracer function in FloodSubRouter.Leave (#373)

fixes #372
This commit is contained in:
Steven Allen 2020-08-10 01:31:21 -07:00 committed by GitHub
parent 2b5243c72f
commit df9592859d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -115,5 +115,5 @@ func (fs *FloodSubRouter) Join(topic string) {
}
func (fs *FloodSubRouter) Leave(topic string) {
fs.tracer.Join(topic)
fs.tracer.Leave(topic)
}