Litle try statement change
This commit is contained in:
parent
d530980b0e
commit
7007253072
1 changed files with 8 additions and 8 deletions
|
@ -88,7 +88,6 @@ class GoogleVoiceClient(object):
|
|||
self.speech_client = speech.SpeechClient()
|
||||
|
||||
while not self.toBeShutdown:
|
||||
try:
|
||||
config = types.RecognitionConfig(
|
||||
encoding=enums.RecognitionConfig.AudioEncoding.LINEAR16,
|
||||
sample_rate_hertz=self.src_rate,
|
||||
|
@ -97,6 +96,7 @@ class GoogleVoiceClient(object):
|
|||
config=config,
|
||||
interim_results=True)
|
||||
|
||||
try:
|
||||
self.logger.log(LOG_BS,"wait for Google Voice")
|
||||
if not self.isRunning.wait(timeout=1):
|
||||
continue # re-ceck toBeShutdown
|
||||
|
|
Loading…
Reference in a new issue