##// END OF EJS Templates
Backport PR #4074: close Client sockets if connection fails...
Backport PR #4074: close Client sockets if connection fails avoids runaway FDs in cases of frequent client failure. also cleanup Client.close a little bit, allowing setting `linger` on sockets at shutdown time, which is helpful for preventing FD growth on connection failure. Should be considered for backport to 1.1.

File last commit:

r11033:fa36e98f
r12427:fb66fa1e
Show More
__init__.py
7 lines | 208 B | text/x-python | PythonLexer
"""The IPython HTML Notebook"""
import os
# Packagers: modify this line if you store the notebook static files elsewhere
DEFAULT_STATIC_FILES_PATH = os.path.join(os.path.dirname(__file__), "static")
del os