You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gevent.queue.Queue()
get(block=True, timeout=None)
Remove and return an item from the queue.
If optional args block is true and timeout is None (the default), block if necessary until an item is available. If timeout is a positive number, it blocks at most timeout seconds and raises the Empty exception if no item was available within that time. Otherwise (block is false), return an item if one is immediately available, else raise the Empty exception (timeout is ignored in that case).
The text was updated successfully, but these errors were encountered:
here is source code from outbound_async_server_test:
if we hangup the sip phone when playing ivr-hello.wav, ""Playback done" will not show in the log file. will outbound_async_server_test wait forever?
document of gevent:
http://www.gevent.org/gevent.queue.html
The text was updated successfully, but these errors were encountered: