Marcin Sulikowski
Marcin Sulikowski
I posted a PR which makes this change: https://github.com/pnuckowski/aioresponses/pull/200
We are aware of this. Currently we only pay attention to errors reported by `pylint`. This is verified on each commit before pushing it to the master branch: http://jenkins.lizardfs.org/job/lizardfs.gerrit.auto.SanityCheck/lastCompletedBuild/testReport/(root)/SanityChecks/test_cgi_using_pylint/history/). The...
> I recommend to drop stop/restart code from daemons or make sure it does what's described above. At the moment it seems unnecessary to maintain redundant service management functionality in...
We are aware of the fact that our init scripts are very old and probably not conforming to today's standards. We didn't rewrite them since forking the project from MooseFS...
I think that the right solution in this case is just to set `ignoregid` (see: `man mfsexports.cfg`) flag in `etc/mfs/mfsexports.cfg`, reload master server's configuration and remount. Everything would work as...
We were considering a more extensive re-branding many times, but there is always something more important to do :). It requires a lot of work to do this without breaking...
Pytest does a lot of magic things behind the scenes with test functions that take arguments. With `pytest` it'd be better to use Pytets fixtures instead of the `@aioresponses` decorator:...
Actually, this whole `if` statement and two versions of `stream_reader_factory` are not needed, see #223
This PR adds a quite useful feature. One of the applications where I am using uvicorn has clients that use long polling to get notifications from the server using plain...
You can do this using the existing features of the library. One way would be to just pretend that a request was slow and raised `asyncio.TimeoutError` as a result (this...