Stephan Jaensch
Stephan Jaensch
`include_missing_properties` is intended to configure the way the models look and behave when being returned as part of a deserialized response. That said, I don't see a reason why we...
You're not setting the (optional) attachment parameter, which is of type `file`. Currently we don't explicitly set the content type, but let the HTTP client take care of it in...
No supported option unfortunately. :( This would be a nice enhancement; it does require adding something to the HTTPFuture interface, plus HTTP client work.
This has been fixed on master, check out the latest documentation: https://bravado.readthedocs.io/en/latest/bravado.html We'll be doing a release soon, which will fix the stable documentation as well.
We'll need to pass a timeout argument to the [result call](https://github.com/Yelp/bravado/blob/f8f98c00c3422f977ae44b4ef7e37350b05f6ea5/bravado/swagger_model.py#L101). The best option is probably to add a `timeout` argument to [SwaggerClient.from_url](https://github.com/Yelp/bravado/blob/f8f98c00c3422f977ae44b4ef7e37350b05f6ea5/bravado/client.py#L77) and pass it down the call chain....
@tomelm: could you give a more specific example? I don't see how you would send anything else than JSON. To send application/x-www-form-urlencoded data you would define every field you send...
@pumazi this is not supported currently. Are you not able to either add a default response or a response with the specified code? You don't need to define the response...
This has been reworked in the meantime (in #444), and now compares host and port (correctly). Are you able to test with the latest master and confirm that it fixes...
@bdowling I guess the main reason there isn't a single dict to look up operation IDs is that up to this point bravado doesn't need it. :) This could be...
Isn't that something that could be done _after_ the header has been converted to str? What we are doing is making sure non-str values are converted to str, how would...