Prateek Agarwal

Results 22 comments of Prateek Agarwal

Code showcasing the difference: ``` python import httpretty from twisted.internet import reactor from twisted.web.client import Agent from twisted.web.http_headers import Headers import requests @httpretty.activate def main(): httpretty.register_uri( httpretty.GET, "http://exampleqwert.com") agent =...

We added [off-heap](http://www.datastax.com/dev/blog/off-heap-memtables-in-Cassandra-2-1) memtable allocation of 20G which reduced the # of flushes and resulted in lesser compaction.

What is the current workaround if one needs to add a new master to the cluster till this feature gets implemented?

So this issue is that [here](https://github.com/Yelp/bravado/blob/master/bravado/client.py#L180) we are fetching the `_request_options` reference and [mutating](https://github.com/Yelp/bravado/blob/master/bravado/client.py#L186) [it](https://github.com/Yelp/bravado/blob/swaggerpy/swaggerpy/client.py#L491) later. The dict provided by user should not get mutated at any cost. So, i...

But i think the intent is to have the bravado client creation pre-fork and cache it. How will that be achieved if importing bravado happens later.

@analogue I don't recollect a way of providing the host during request call if schema file is read via `file://` mode. Any ideas if bravado supports this?

"label the client call by title" was meant wrt zipkin. I should have mentioned that. It would be used in bravado decorators when wrapping with zipkin client. The wrapper needed...

With the `typeValidator` now skipping `None` values for type validation, i think we assume that `allowEmptyValue` is True in every case. So do we explicitly need to handle this, in...

lgtm ... a unit test case which assertRaises this error would be helpful.

I think the best bet is to go with [polymorphism](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#composition-and-inheritance-polymorphism) and create a second model definition from the first. But i think bravado doesn't support polymorphism yet.