petedmarsh

Results 6 comments of petedmarsh

What about setting autorestart=true in the supervisor config for each process? The processes would then always restart regardless of exit codes - if you wanted to disable a process then...

I believe I'm experiencing the same issue. I have a large Django app with 10s of apps. I ran line profile on `get_versions` with my `INSTALLED_APPS` as the argument and...

I am experiencing the same issue on Windows 10. If I subclass `PostgresContainer` like so then it works: ``` class X(PostgresContainer): def get_connection_url(self): return super().get_connection_url().replace('localnpipe', 'localhost') with X('postgres:12.3') as pg:...

Thanks for the quick reply! Is it a safe assumption that if the result of `ByteString.utf8()` contains the unicode replacement character then the underlying bytes are not valid UTF-8?

This tripped me up a little, wether that is mostly a me problem or this is something that would be helpful for others I can't say, but I thought I'd...

The flake8 errors are unrelated to the changes in this PR, https://github.com/jmcarp/betfair.py/pull/54 will fix them.