fix race condition around connection count getting
the build was successful Details

This commit is contained in:
Dan Ballard 2020-02-03 18:40:17 -05:00
parent f82c2f9da4
commit 2fd0aa67bd
1 changed files with 2 additions and 0 deletions

View File

@ -136,6 +136,8 @@ func (ra *RicochetApplication) Close(onion string) {
// ConnectionCount returns the number of concurrent connections to the application
func (ra *RicochetApplication) ConnectionCount() int {
ra.lock.Lock()
defer ra.lock.Unlock()
return len(ra.instances)
}