##// END OF EJS Templates
cache kernel_info reply for protocol adaptation...
cache kernel_info reply for protocol adaptation WebSocket connections will not open until kernel_info is retrieved, removing a race condition waiting for the reply to indicate adaptation, which could result in a v5 message being sent to a v4 kernel. The reply is cached, so that it need not be requested on each new connection.

File last commit:

r16418:b55d2748
r18497:e68c1790
Show More
__init__.py
7 lines | 151 B | text/x-python | PythonLexer
from .base import PostProcessorBase
# protect against unavailable tornado
try:
from .serve import ServePostProcessor
except ImportError:
pass