bjoern
bjoern copied to clipboard
A screamingly fast Python 2/3 WSGI server written in C.
I tried to install with the BJOERN_WANT_STATSD=yes flag tried to run BJOERN_WANT_STATSD=yes python setup.py install fails with the fallowing output: running install running bdist_egg running egg_info writing bjoern.egg-info/PKG-INFO writing dependency_links...
Closes #52.
I'm running Bjoern embedded in Python in this way: ```python logger.info('Bjoern bound to UNIX socket %s', sock_name) try: os.unlink(sock_name) except OSError: logger.error('Could not remove previous UNIX socket %s', sock_name) pass...
Fix for #146
Used a construct from here http://pythonextensionpatterns.readthedocs.io/en/latest/compiler_flags.html to differentiate between Debug and Production builds.
They removed the path and query callbacks and added a URL parsing utility instead.
When running 'pip install bjoern' on Windows 10: "cl : Command line error D8021 : invalid numeric argument '/Wextra' error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\BuildTools\\VC\\Tools\\MSVC\\14.13.26128\\bin\\HostX86\\x64\\cl.exe' failed with exit status...
The fork example (https://github.com/jonashaag/bjoern/blob/master/tests/fork.py) ignores child processes' exit codes. Whatever happens to the children, the parent process will exit gracefully. This does not allow to run it with supervisord or...