Merge pull request #201 from vcmkrtchyan/master

Fix freeze when container is started/stopped multiple times
This commit is contained in:
bradley 2020-11-13 16:42:16 -05:00 committed by GitHub
commit 44600fca45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -74,6 +74,7 @@ func (c *Docker) Logs() LogCollector {
// Stop collector
func (c *Docker) Stop() {
c.running = false
c.done <- true
}