Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-11 | [test] toxify tests | drebs | |
2015-07-28 | [style] more pep8 cleanup | Kali Kaneko | |
2015-07-23 | [tests] implemented http feature according to test | Bruno Wagner | |
Two test cases were broken and were implemented here: The first was that HTTPClient should share the connection between clients if a pool was not passed explicitly. If you initialize an HTTPClient without a pool, it will reuse a pool created on the class. The second was that you should be able to pass to the HTTPCLient a pool on initialization. Added that possibility and fixed the tests accordingly | |||
2015-06-02 | [feat] Make it optional to have a dedicated pool | Victor Shyba | |
As @meskio pointed out, some cases could need a dedicated pool with different parameters. This is a suggested implementation where the pool is reused by default, creating a dedicated one just if needed/asked. This way we ensure that resources are under control and special cases are still handled. |