references
references
references
references
references
- twisted
bug report
0: UserWarning: You do not have a working installation of the service_identity module: 'cannot import name DNSName'. Please install it from <https://pypi.python.org/pypi/service_identity> and make sure all of its dependencies are satisfied. Without the service_identity module and a recent enough pyOpenSSL to support it, Twisted can perform only rudimentary TLS client hostname verification. Many valid certificate/hostname mappings may be rejected.
fixed
$ pip install service_identity --force --upgrade
- twisted
bug report
AttributeError: 'module' object has no attribute 'OP_NO_TLSv1_1'
fixed
$ pip install Twisted==16.6.0
- Listen port
bug report
twisted.internet.error.CannotListenError: Couldn't listen on any:23333: [Errno 98] Address already in use.
fixed
$ lsof -i TCP:23333 | grep LISTEN
$ kill -s 9 <PID>