pulsar
pulsar copied to clipboard
Event driven concurrent framework for Python
* **pulsar version**: 2.0.2 * **python version**: 3.6.3 * **platform**: Ubuntu When I learn the Pulsar-ds [example](http://quantmind.github.io/pulsar/tutorials/pulsards.html#tutorials-pulsards), something is wrong : the client.ping() does NOT return 'True', WHY? ``` Python...
* **pulsar version**: 2.0 ## Description Setting the [EventLoopPolicy](https://github.com/quantmind/pulsar/blob/master/pulsar/async/monitor.py#L224) can cause a dead lock if some async components already have initialised they loop (a use case in the ``lux`` was...
* **pulsar version**: 2.0.1 ## Description The greenlet pool is used for consuming implicit asynchronous function in a pool of greenlets. The performance of consuming in the pool is worse...
It is failing in redis because the `pubsub` handler is used by two tests simultaneously
* **pulsar version**: 2.0 * **platform**: windows ## Description Some tests, mainly with socket connections and repeated requests, fail in windows from time to time. These tests are currently switched...
* **pulsar version**: 2.0 ## Description HTTP pipeline is not working and, importantly, it is causing pulsar to hang. ## Actual behaviour pulsar hangs and consumer CPU ## Steps to...
* **pulsar version**: 2.0 ## Description When running tests using C extensions, the http.tunnel.test_requests_get_200 test function fails. Something to do with SSL protocol error. This tests works fine when not...
* **pulsar version**: 2.0 * **python version**: 3.5+ * **platform**: any ## Description The UDP has been switch off in pulsar 2.0 and I'm not sure we'll resume it unless...
Is there anyway to override config in a context manager, such as for individual unit tests? For instance: ``` class MyTestCase(TestCase): override_config('SMTP_SETTINGS', {'host': 'localhost'}) def test_something(self): send_mail() ```