Skip to content

Commit

Permalink
Add join timout to allow main thread to handle signals
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtomlinson committed Mar 25, 2017
1 parent 87b67cf commit e268af3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opsdroidaudio/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def start(self):
for thread in self.threads:
thread.start()
for thread in self.threads:
thread.join()
thread.join(60)

self.detector.terminate()

Expand Down

0 comments on commit e268af3

Please sign in to comment.