Re: [Twisted-Python] Twisted with pypy3 on Ubuntu 20.4, SSL error: 'ee key too small'

2020-09-30 Thread Craig Rodrigues
Adi, Thanks for the tip. Yes, increasing the key size in the tests definitely eliminated this error: https://github.com/twisted/twisted/pull/1411 -- Craig On Tue, Sep 29, 2020 at 3:34 PM Adi Roiban wrote: > > > On Tue, 29 Sep 2020 at 23:25, Craig Rodrigues > wrote: > >> Hi, >> >> I ran an e

Re: [Twisted-Python] doWrite on twisted.internet.tcp.Port

2020-09-30 Thread chris
[Closing the loop for future contextual searches] This solved the problem. Moving all Twisted reactor-related imports inside overloaded multiprocessing.Process.run() functions, allows a single controller process to manage many Twisted reactors running in child processes. Thanks again.