question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Unhandled 'error' event crash

See original GitHub issue

While using nodejs-speech I am facing crashes like the one shown here:

events.js:183
      throw er; // Unhandled 'error' event
      ^

Error: 14 UNAVAILABLE: EOF
    at createStatusError (/service/node_modules/grpc/src/client.js:64:15)
    at ClientDuplexStream._emitStatusIfDone (/service/node_modules/grpc/src/client.js:270:19)
    at ClientDuplexStream._receiveStatus (/service/node_modules/grpc/src/client.js:248:8)
    at /service/node_modules/grpc/src/client.js:804:12

The Error code and message varies from crash to crash. Ie:

Error: 14 UNAVAILABLE: 502:Bad Gateway

…, but the crash stack trace is always the same. client.js is emiting an error event on an instance that does not have any listener for such event attached.

I opened the corresponding issue in in nodejs-speech https://github.com/googleapis/nodejs-speech/issues/62, but I believe this is the correct place for it.

It is reproducible even though it can take from 1 minute to almost 2 hours to happen. I can provide with the required information, some of which you can already see in the referenced issue.

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Reactions:1
  • Comments:17 (7 by maintainers)

github_iconTop GitHub Comments

1reaction
nicolasnoblecommented, May 8, 2018

No clue on how google-gax and nodejs-speech are working exactly - gRPC itself is issuing call objects when being asked to, and whichever is requesting them HAS to bind the error handler on them.

So something somewhere along the chain is breaking that API contract.

1reaction
jmillancommented, May 7, 2018

Hi @kjin,

@jmillan: I tried using your snippet from googleapis/nodejs-speech#62, but wasn’t able to reproduce a bad gateway error

For how much time did you try? It is sometimes easily reproducible, whereas the same piece of code may not crash that easily on a later execution… I’ve sometime got the crash within a minute or two, some other each 5 minutes and some other time 3 hours after starting… I wish I had a 100% reproducible code snippet.

The snippet is just a class definition, so I’m not sure if I’m running it correctly – can you share more details about how the class is being used?

I’m getting a real time audio stream from a gstreamer pipe (gst-launch), out of which I’m creating a readable Node.js stream, which I’m piping to the google-speech streamingRecognize() duplex stream.

If you check the code I provided, the class has a method start() which expects a readable stream: https://github.com/googleapis/nodejs-speech/issues/62#issue-317169484

(I did see that “it’s reproducible on the 5th attempt” but couldn’t, in particular, reproduce this.)

As I said, and if you read the whole google-speech issue you will notice, I would reproduce it every 5 minutes for some time…, but then the crash didn’t appear until 80+ minutes of continuous execution.

In case it helps, here the logs of one of the latest time the process crashed last week. I put a log on every event handler of the duplex stream, consisting of a random ID and an counter. Everytime I create a streamingRecognize() duplex stream I assign it an incrementing numerical attribute which I use later for logging purposes.

I use the unpipe event handler to create a new duplex stream which I then pipe to the audio read stream. The unpipe event is usually fired upon error event as can be seen.

NOTE: the crash logs are at the very end

Tue, 01 May 2018 06:25:29 GMT GoogleSpeech constructor()
Tue, 01 May 2018 06:25:30 GMT GoogleSpeech start()
Tue, 01 May 2018 06:25:30 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:25:30 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:25:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:1] pipe
Tue, 01 May 2018 06:26:36 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:1] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:26:36 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:1] unpipe
Tue, 01 May 2018 06:26:36 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:26:36 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:26:36 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:26:36 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:2] pipe
Tue, 01 May 2018 06:26:36 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:1] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:26:36 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:1] close
Tue, 01 May 2018 06:27:26 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:2] unpipe
Tue, 01 May 2018 06:27:26 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:27:26 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:27:26 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:27:26 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:3] pipe
Tue, 01 May 2018 06:27:26 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:2] error:  11 OUT_OF_RANGE: Audio data is being streamed too slow. Please stream audio data approximately at real time.
Tue, 01 May 2018 06:27:26 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:2] close
Tue, 01 May 2018 06:28:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:3] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:28:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:3] unpipe
Tue, 01 May 2018 06:28:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:28:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:28:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:28:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:4] pipe
Tue, 01 May 2018 06:28:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:3] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:28:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:3] close
Tue, 01 May 2018 06:30:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:4] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:30:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:4] unpipe
Tue, 01 May 2018 06:30:02 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:30:02 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:30:02 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:30:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:5] pipe
Tue, 01 May 2018 06:30:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:4] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:30:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:4] close
Tue, 01 May 2018 06:31:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:5] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:31:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:5] unpipe
Tue, 01 May 2018 06:31:30 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:31:30 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:31:30 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:31:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:6] pipe
Tue, 01 May 2018 06:31:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:5] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:31:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:5] close
Tue, 01 May 2018 06:33:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:6] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:33:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:6] unpipe
Tue, 01 May 2018 06:33:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:33:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:33:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:33:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:7] pipe
Tue, 01 May 2018 06:33:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:6] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:33:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:6] close
Tue, 01 May 2018 06:34:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:7] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:34:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:7] unpipe
Tue, 01 May 2018 06:34:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:34:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:34:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:34:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:8] pipe
Tue, 01 May 2018 06:34:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:7] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:34:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:7] close
Tue, 01 May 2018 06:36:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:8] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:36:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:8] unpipe
Tue, 01 May 2018 06:36:04 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:36:04 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:36:04 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:36:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:9] pipe
Tue, 01 May 2018 06:36:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:8] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:36:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:8] close
Tue, 01 May 2018 06:37:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:9] unpipe
Tue, 01 May 2018 06:37:32 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:37:32 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:37:32 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:37:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:10] pipe
Tue, 01 May 2018 06:37:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:9] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:37:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:9] close
Tue, 01 May 2018 06:39:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:10] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:39:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:10] unpipe
Tue, 01 May 2018 06:39:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:39:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:39:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:39:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:11] pipe
Tue, 01 May 2018 06:39:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:10] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:39:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:10] close
Tue, 01 May 2018 06:40:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:11] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:40:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:11] unpipe
Tue, 01 May 2018 06:40:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:40:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:40:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:40:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:12] pipe
Tue, 01 May 2018 06:40:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:11] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:40:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:11] close
Tue, 01 May 2018 06:42:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:12] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:42:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:12] unpipe
Tue, 01 May 2018 06:42:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:42:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:42:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:42:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:13] pipe
Tue, 01 May 2018 06:42:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:12] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:42:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:12] close
Tue, 01 May 2018 06:43:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:13] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:43:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:13] unpipe
Tue, 01 May 2018 06:43:30 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:43:30 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:43:30 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:43:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:14] pipe
Tue, 01 May 2018 06:43:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:13] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:43:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:13] close
Tue, 01 May 2018 06:45:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:14] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:45:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:14] unpipe
Tue, 01 May 2018 06:45:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:45:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:45:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:45:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:15] pipe
Tue, 01 May 2018 06:45:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:14] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:45:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:14] close
Tue, 01 May 2018 06:46:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:15] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:46:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:15] unpipe
Tue, 01 May 2018 06:46:30 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:46:30 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:46:30 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:46:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:16] pipe
Tue, 01 May 2018 06:46:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:15] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:46:30 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:15] close
Tue, 01 May 2018 06:48:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:16] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:48:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:16] unpipe
Tue, 01 May 2018 06:48:03 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:48:03 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:48:03 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:48:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:17] pipe
Tue, 01 May 2018 06:48:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:16] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:48:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:16] close
Tue, 01 May 2018 06:49:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:17] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:49:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:17] unpipe
Tue, 01 May 2018 06:49:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:49:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:49:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:49:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:18] pipe
Tue, 01 May 2018 06:49:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:17] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:49:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:17] close
Tue, 01 May 2018 06:51:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:18] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:51:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:18] unpipe
Tue, 01 May 2018 06:51:02 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:51:02 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:51:02 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:51:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:19] pipe
Tue, 01 May 2018 06:51:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:18] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:51:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:18] close
Tue, 01 May 2018 06:52:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:19] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:52:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:19] unpipe
Tue, 01 May 2018 06:52:32 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:52:32 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:52:32 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:52:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:20] pipe
Tue, 01 May 2018 06:52:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:19] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:52:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:19] close
Tue, 01 May 2018 06:54:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:20] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:54:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:20] unpipe
Tue, 01 May 2018 06:54:04 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:54:04 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:54:04 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:54:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:21] pipe
Tue, 01 May 2018 06:54:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:20] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:54:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:20] close
Tue, 01 May 2018 06:55:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:21] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:55:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:21] unpipe
Tue, 01 May 2018 06:55:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:55:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:55:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:55:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:22] pipe
Tue, 01 May 2018 06:55:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:21] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:55:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:21] close
Tue, 01 May 2018 06:57:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:22] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:57:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:22] unpipe
Tue, 01 May 2018 06:57:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:57:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:57:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:57:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:23] pipe
Tue, 01 May 2018 06:57:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:22] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:57:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:22] close
Tue, 01 May 2018 06:58:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:23] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:58:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:23] unpipe
Tue, 01 May 2018 06:58:33 GMT GoogleSpeech _restart()
Tue, 01 May 2018 06:58:33 GMT GoogleSpeech _start()
Tue, 01 May 2018 06:58:33 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 06:58:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:24] pipe
Tue, 01 May 2018 06:58:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:23] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 06:58:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:23] close
Tue, 01 May 2018 07:00:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:24] unpipe
Tue, 01 May 2018 07:00:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:00:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:00:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:00:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:25] pipe
Tue, 01 May 2018 07:00:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:24] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:00:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:24] close
Tue, 01 May 2018 07:01:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:25] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:01:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:25] unpipe
Tue, 01 May 2018 07:01:34 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:01:34 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:01:34 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:01:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:26] pipe
Tue, 01 May 2018 07:01:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:25] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:01:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:25] close
Tue, 01 May 2018 07:03:05 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:26] unpipe
Tue, 01 May 2018 07:03:05 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:03:05 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:03:05 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:03:05 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:27] pipe
Tue, 01 May 2018 07:03:05 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:26] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:03:05 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:26] close
Tue, 01 May 2018 07:04:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:27] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:04:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:27] unpipe
Tue, 01 May 2018 07:04:33 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:04:33 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:04:33 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:04:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:28] pipe
Tue, 01 May 2018 07:04:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:27] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:04:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:27] close
Tue, 01 May 2018 07:06:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:28] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:06:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:28] unpipe
Tue, 01 May 2018 07:06:02 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:06:02 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:06:02 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:06:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:29] pipe
Tue, 01 May 2018 07:06:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:28] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:06:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:28] close
Tue, 01 May 2018 07:07:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:29] unpipe
Tue, 01 May 2018 07:07:32 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:07:32 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:07:32 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:07:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:30] pipe
Tue, 01 May 2018 07:07:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:29] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:07:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:29] close
Tue, 01 May 2018 07:09:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:30] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:09:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:30] unpipe
Tue, 01 May 2018 07:09:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:09:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:09:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:09:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:31] pipe
Tue, 01 May 2018 07:09:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:30] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:09:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:30] close
Tue, 01 May 2018 07:10:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:31] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:10:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:31] unpipe
Tue, 01 May 2018 07:10:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:10:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:10:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:10:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:32] pipe
Tue, 01 May 2018 07:10:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:31] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:10:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:31] close
Tue, 01 May 2018 07:12:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:32] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:12:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:32] unpipe
Tue, 01 May 2018 07:12:03 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:12:03 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:12:03 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:12:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:33] pipe
Tue, 01 May 2018 07:12:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:32] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:12:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:32] close
Tue, 01 May 2018 07:13:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:33] unpipe
Tue, 01 May 2018 07:13:32 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:13:32 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:13:32 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:13:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:34] pipe
Tue, 01 May 2018 07:13:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:33] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:13:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:33] close
Tue, 01 May 2018 07:15:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:34] unpipe
Tue, 01 May 2018 07:15:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:15:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:15:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:15:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:35] pipe
Tue, 01 May 2018 07:15:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:34] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:15:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:34] close
Tue, 01 May 2018 07:16:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:35] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:16:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:35] unpipe
Tue, 01 May 2018 07:16:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:16:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:16:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:16:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:36] pipe
Tue, 01 May 2018 07:16:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:35] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:16:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:35] close
t^[Tue, 01 May 2018 07:18:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:36] unpipe
Tue, 01 May 2018 07:18:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:18:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:18:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:18:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:37] pipe
Tue, 01 May 2018 07:18:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:36] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:18:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:36] close
:noonly
Tue, 01 May 2018 07:19:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:37] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:19:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:37] unpipe
Tue, 01 May 2018 07:19:33 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:19:33 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:19:33 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:19:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:38] pipe
Tue, 01 May 2018 07:19:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:37] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:19:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:37] close
Tue, 01 May 2018 07:21:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:38] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:21:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:38] unpipe
Tue, 01 May 2018 07:21:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:21:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:21:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:21:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:39] pipe
Tue, 01 May 2018 07:21:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:38] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:21:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:38] close
Tue, 01 May 2018 07:22:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:39] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:22:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:39] unpipe
Tue, 01 May 2018 07:22:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:22:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:22:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:22:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:40] pipe
Tue, 01 May 2018 07:22:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:39] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:22:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:39] close
Tue, 01 May 2018 07:24:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:40] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:24:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:40] unpipe
Tue, 01 May 2018 07:24:02 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:24:02 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:24:02 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:24:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:41] pipe
Tue, 01 May 2018 07:24:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:40] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:24:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:40] close
Tue, 01 May 2018 07:25:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:41] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:25:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:41] unpipe
Tue, 01 May 2018 07:25:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:25:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:25:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:25:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:42] pipe
Tue, 01 May 2018 07:25:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:41] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:25:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:41] close
Tue, 01 May 2018 07:27:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:42] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:27:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:42] unpipe
Tue, 01 May 2018 07:27:03 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:27:03 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:27:03 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:27:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:43] pipe
Tue, 01 May 2018 07:27:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:42] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:27:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:42] close
Tue, 01 May 2018 07:28:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:43] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:28:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:43] unpipe
Tue, 01 May 2018 07:28:32 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:28:32 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:28:32 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:28:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:44] pipe
Tue, 01 May 2018 07:28:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:43] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:28:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:43] close
Tue, 01 May 2018 07:30:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:44] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:30:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:44] unpipe
Tue, 01 May 2018 07:30:02 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:30:02 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:30:02 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:30:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:45] pipe
Tue, 01 May 2018 07:30:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:44] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:30:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:44] close
Tue, 01 May 2018 07:31:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:45] unpipe
Tue, 01 May 2018 07:31:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:31:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:31:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:31:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:46] pipe
Tue, 01 May 2018 07:31:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:45] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:31:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:45] close
Tue, 01 May 2018 07:33:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:46] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:33:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:46] unpipe
Tue, 01 May 2018 07:33:02 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:33:02 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:33:02 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:33:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:47] pipe
Tue, 01 May 2018 07:33:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:46] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:33:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:46] close
Tue, 01 May 2018 07:34:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:47] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:34:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:47] unpipe
Tue, 01 May 2018 07:34:33 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:34:33 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:34:33 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:34:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:48] pipe
Tue, 01 May 2018 07:34:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:47] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:34:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:47] close
Tue, 01 May 2018 07:36:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:48] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:36:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:48] unpipe
Tue, 01 May 2018 07:36:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:36:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:36:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:36:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:49] pipe
Tue, 01 May 2018 07:36:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:48] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:36:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:48] close
Tue, 01 May 2018 07:37:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:49] unpipe
Tue, 01 May 2018 07:37:34 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:37:34 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:37:34 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:37:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:50] pipe
Tue, 01 May 2018 07:37:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:49] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:37:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:49] close
Tue, 01 May 2018 07:39:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:50] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:39:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:50] unpipe
Tue, 01 May 2018 07:39:03 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:39:03 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:39:03 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:39:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:51] pipe
Tue, 01 May 2018 07:39:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:50] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:39:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:50] close
Tue, 01 May 2018 07:40:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:51] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:40:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:51] unpipe
Tue, 01 May 2018 07:40:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:40:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:40:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:40:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:52] pipe
Tue, 01 May 2018 07:40:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:51] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:40:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:51] close
Tue, 01 May 2018 07:42:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:52] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:42:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:52] unpipe
Tue, 01 May 2018 07:42:04 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:42:04 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:42:04 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:42:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:53] pipe
Tue, 01 May 2018 07:42:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:52] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:42:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:52] close
Tue, 01 May 2018 07:43:35 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:53] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:43:35 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:53] unpipe
Tue, 01 May 2018 07:43:35 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:43:35 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:43:35 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:43:35 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:54] pipe
Tue, 01 May 2018 07:43:35 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:53] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:43:35 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:53] close
Tue, 01 May 2018 07:45:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:54] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:45:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:54] unpipe
Tue, 01 May 2018 07:45:03 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:45:03 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:45:03 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:45:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:55] pipe
Tue, 01 May 2018 07:45:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:54] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:45:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:54] close
Tue, 01 May 2018 07:46:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:55] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:46:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:55] unpipe
Tue, 01 May 2018 07:46:32 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:46:32 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:46:32 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:46:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:56] pipe
Tue, 01 May 2018 07:46:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:55] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:46:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:55] close
Tue, 01 May 2018 07:48:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:56] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:48:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:56] unpipe
Tue, 01 May 2018 07:48:04 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:48:04 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:48:04 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:48:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:57] pipe
Tue, 01 May 2018 07:48:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:56] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:48:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:56] close
Tue, 01 May 2018 07:49:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:57] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:49:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:57] unpipe
Tue, 01 May 2018 07:49:33 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:49:33 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:49:33 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:49:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:58] pipe
Tue, 01 May 2018 07:49:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:57] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:49:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:57] close

Tue, 01 May 2018 07:51:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:58] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:51:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:58] unpipe
Tue, 01 May 2018 07:51:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:51:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:51:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:51:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:59] pipe
Tue, 01 May 2018 07:51:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:58] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:51:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:58] close


Tue, 01 May 2018 07:52:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:59] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:52:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:59] unpipe
Tue, 01 May 2018 07:52:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:52:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:52:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:52:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:60] pipe
Tue, 01 May 2018 07:52:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:59] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:52:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:59] close
Tue, 01 May 2018 07:54:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:60] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:54:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:60] unpipe
Tue, 01 May 2018 07:54:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:54:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:54:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:54:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:61] pipe
Tue, 01 May 2018 07:54:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:60] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:54:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:60] close
Tue, 01 May 2018 07:55:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:61] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:55:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:61] unpipe
Tue, 01 May 2018 07:55:32 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:55:32 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:55:32 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:55:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:62] pipe
Tue, 01 May 2018 07:55:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:61] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:55:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:61] close
Tue, 01 May 2018 07:57:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:62] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:57:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:62] unpipe
Tue, 01 May 2018 07:57:04 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:57:04 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:57:04 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:57:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:63] pipe
Tue, 01 May 2018 07:57:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:62] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:57:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:62] close
Tue, 01 May 2018 07:58:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:63] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:58:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:63] unpipe
Tue, 01 May 2018 07:58:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 07:58:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 07:58:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 07:58:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:64] pipe
Tue, 01 May 2018 07:58:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:63] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 07:58:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:63] close
Tue, 01 May 2018 08:00:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:64] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:00:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:64] unpipe
Tue, 01 May 2018 08:00:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:00:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:00:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:00:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:65] pipe
Tue, 01 May 2018 08:00:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:64] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:00:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:64] close
Tue, 01 May 2018 08:01:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:65] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:01:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:65] unpipe
Tue, 01 May 2018 08:01:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:01:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:01:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:01:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:66] pipe
Tue, 01 May 2018 08:01:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:65] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:01:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:65] close
Tue, 01 May 2018 08:03:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:66] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:03:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:66] unpipe
Tue, 01 May 2018 08:03:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:03:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:03:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:03:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:67] pipe
Tue, 01 May 2018 08:03:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:66] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:03:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:66] close
Tue, 01 May 2018 08:04:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:67] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:04:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:67] unpipe
Tue, 01 May 2018 08:04:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:04:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:04:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:04:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:68] pipe
Tue, 01 May 2018 08:04:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:67] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:04:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:67] close
Tue, 01 May 2018 08:06:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:68] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:06:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:68] unpipe
Tue, 01 May 2018 08:06:04 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:06:04 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:06:04 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:06:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:69] pipe
Tue, 01 May 2018 08:06:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:68] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:06:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:68] close
Tue, 01 May 2018 08:07:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:69] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:07:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:69] unpipe
Tue, 01 May 2018 08:07:32 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:07:32 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:07:32 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:07:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:70] pipe
Tue, 01 May 2018 08:07:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:69] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:07:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:69] close
Tue, 01 May 2018 08:09:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:70] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:09:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:70] unpipe
Tue, 01 May 2018 08:09:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:09:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:09:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:09:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:71] pipe
Tue, 01 May 2018 08:09:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:70] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:09:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:70] close
Tue, 01 May 2018 08:10:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:71] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:10:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:71] unpipe
Tue, 01 May 2018 08:10:32 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:10:32 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:10:32 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:10:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:72] pipe
Tue, 01 May 2018 08:10:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:71] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:10:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:71] close
Tue, 01 May 2018 08:12:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:72] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:12:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:72] unpipe
Tue, 01 May 2018 08:12:02 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:12:02 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:12:02 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:12:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:73] pipe
Tue, 01 May 2018 08:12:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:72] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:12:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:72] close
Tue, 01 May 2018 08:13:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:73] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:13:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:73] unpipe
Tue, 01 May 2018 08:13:32 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:13:32 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:13:32 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:13:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:74] pipe
Tue, 01 May 2018 08:13:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:73] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:13:32 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:73] close
Tue, 01 May 2018 08:15:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:74] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:15:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:74] unpipe
Tue, 01 May 2018 08:15:04 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:15:04 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:15:04 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:15:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:75] pipe
Tue, 01 May 2018 08:15:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:74] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:15:04 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:74] close
Tue, 01 May 2018 08:16:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:75] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:16:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:75] unpipe
Tue, 01 May 2018 08:16:33 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:16:33 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:16:33 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:16:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:76] pipe
Tue, 01 May 2018 08:16:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:75] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:16:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:75] close
Tue, 01 May 2018 08:18:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:76] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:18:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:76] unpipe
Tue, 01 May 2018 08:18:03 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:18:03 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:18:03 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:18:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:77] pipe
Tue, 01 May 2018 08:18:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:76] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:18:03 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:76] close
Tue, 01 May 2018 08:19:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:77] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:19:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:77] unpipe
Tue, 01 May 2018 08:19:31 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:19:31 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:19:31 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:19:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:78] pipe
Tue, 01 May 2018 08:19:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:77] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:19:31 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:77] close
Tue, 01 May 2018 08:21:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:78] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:21:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:78] unpipe
Tue, 01 May 2018 08:21:01 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:21:01 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:21:01 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:21:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:79] pipe
Tue, 01 May 2018 08:21:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:78] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:21:01 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:78] close
Tue, 01 May 2018 08:22:35 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:79] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:22:35 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:79] unpipe
Tue, 01 May 2018 08:22:35 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:22:35 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:22:35 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:22:35 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:80] pipe
Tue, 01 May 2018 08:22:35 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:79] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:22:35 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:79] close
Tue, 01 May 2018 08:24:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:80] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:24:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:80] unpipe
Tue, 01 May 2018 08:24:02 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:24:02 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:24:02 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:24:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:81] pipe
Tue, 01 May 2018 08:24:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:80] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:24:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:80] close
Tue, 01 May 2018 08:25:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:81] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:25:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:81] unpipe
Tue, 01 May 2018 08:25:33 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:25:33 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:25:33 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:25:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:82] pipe
Tue, 01 May 2018 08:25:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:81] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:25:33 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:81] close
Tue, 01 May 2018 08:27:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:82] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:27:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:82] unpipe
Tue, 01 May 2018 08:27:02 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:27:02 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:27:02 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:27:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:83] pipe
Tue, 01 May 2018 08:27:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:82] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:27:02 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:82] close
Tue, 01 May 2018 08:28:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:83] data error:  Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:28:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:83] unpipe
Tue, 01 May 2018 08:28:34 GMT GoogleSpeech _restart()
Tue, 01 May 2018 08:28:34 GMT GoogleSpeech _start()
Tue, 01 May 2018 08:28:34 GMT GoogleSpeech _createRecognizeStream()
Tue, 01 May 2018 08:28:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:84] pipe
Tue, 01 May 2018 08:28:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:83] error:  11 OUT_OF_RANGE: Exceeded maximum allowed stream duration of 65 seconds.
Tue, 01 May 2018 08:28:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:83] close
Tue, 01 May 2018 08:28:34 GMT AsrProcess stop()
Tue, 01 May 2018 08:28:34 GMT AsrProcess close()
Tue, 01 May 2018 08:28:34 GMT Worker close()
Tue, 01 May 2018 08:28:34 GMT AsrProcess close()
Tue, 01 May 2018 08:28:34 GMT GoogleSpeech stop()
Tue, 01 May 2018 08:28:34 GMT GoogleSpeech _stop()
Tue, 01 May 2018 08:28:34 GMT GoogleSpeech recognizeStream [NlWTuFRxyf:84] unpipe
events.js:183
      throw er; // Unhandled 'error' event
      ^

Error: 14 UNAVAILABLE: EOF
    at createStatusError (/service/node_modules/grpc/src/client.js:64:15)
    at ClientDuplexStream._emitStatusIfDone (/service/node_modules/grpc/src/client.js:270:19)
    at ClientDuplexStream._receiveStatus (/service/node_modules/grpc/src/client.js:248:8)
    at /service/node_modules/grpc/src/client.js:804:12
Read more comments on GitHub >

github_iconTop Results From Across the Web

How to Fix "throw er; // Unhandled 'error' event"?
It's only affecting watch -command and appears to be linked to a file-system incompatibility when watching file changes. The line number ...
Read more >
How to "catch" the throw er; // Unhandled 'error' event in other ...
Even if any code I call has a coding error, it shouldn't completely crash my calling script. There should be a way for...
Read more >
Unhandled 'error' event crash #62 - GitHub
As shown in the shared code, the streamingRecognize() write steam is re-generated on every data event which reports an error (typically being: ...
Read more >
Let It Crash: Best Practices for Handling Node.js Errors on ...
When a JavaScript error is not properly handled, an uncaughtException is emitted. These suggest the programmer has made an error, and they ...
Read more >
Crash reporting when CLR or Native Top Level Unhandled ...
How can i get data from the crash that are not catch by CLR Unhandled Exception Event, Native Top Level Unhandled Exception Filter...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found