Luca Sbardella
Luca Sbardella
Add coroutine based actors. These actors are different from other actors since they don't own an event loop. Instead they share the loop of the process-based of thread-based actor which...
Currently the default values in `Config` instances are not updated when we initialise an Application with config parameters as key-valued parameter. For example ``` WSGIServer(..., config='myconfig.path') ``` should show as...
Something wrong with the pool of connections I think. Test case: `TestEchoServerProcess.test_sync_close`
The current implementation uses `asyncio.sleep` to wait for the lock to be released. We should replace it with a pubsub callback and a timeout.
The `on_end` callback is not called if there are no test cases. This seems in contrast with the `on_start` which is always called.
While developing pulsar-queue I discovered this: ``` 20:21:02 [p=3848, t=140735267885824, ERROR, pulsar.arbiter] Server error on 'lpush' command Traceback (most recent call last): File "/usr/local/lib/python3.4/site-packages/pulsar/apps/ds/client.py", line 89, in _execute_command handle(self, request,...
For the sake of compatibility with ``urlparse`` and ``urlsplit`` from the ``urllib.parse`` standard lib module should the ``URL`` class * rename ``schema`` to ``scheme`` * rename ``host`` to ``netloc`` or...
The `session` attribute is not available on a instance loaded from the database via the `load_related` query.
A design choice needs to be made when `pulling` data from `stdnet.orm.Structure`. Currently there is no transaction. Data is pulled immediately. This is in contrast with the `sessions` commit which...