Sergio Aguilar
Sergio Aguilar
@fellnerse thanks for the suggestion, I was scratching my head with this one. Perhaps a PR will do ?
This is a sahara issue. Take a look at this vagrant-libvirt issue: https://github.com/pradels/vagrant-libvirt/issues/363 In sahara you have to edit line one of **/lib/sahara/session/libvirt.rb** From: ``` ruby require "fog" module Sahara...
@mdimjasevic Yup just submitted the pull request. https://github.com/chekolyn/sahara/commit/83801c923b33ee81d264d991dc959d0fc136616d
@seandst I think you make a good point however the "fog/libvirt" requirement source is from vagrant-libvirt itself If you take a look at the gemspec; vagrant-libvirt has it as a...
Hola @rathboma, I was wondering if you are taking any volunteers for this feature; I was just doing some research on what's out there and we can probably use Google's...
Sounds good; will focus on the basics.
@mehdihasan the `app/object state` error is coming from: https://github.com/claws/aioprometheus/blob/master/src/aioprometheus/asgi/starlette.py#L16 I got it working with something like this: ``` application = connexion.AsyncApp(__name__, specification_dir="../openapi/") from starlette.requests import Request from starlette.responses import Response...
I was just trying to do this. This would be a useful function.
@yliaog sure, I'll give it a shot. i think the deserializer() might have been auto generated by swagger codegen. So where would this be appropriate? utils?
I've been doing some tests and using a similar approach to [utils.create_from_yaml ](https://github.com/kubernetes-client/python/blob/master/kubernetes/utils/create_from_yaml.py)to infer the object response_type to use in the already generated codegen deserialize function. Using this approach is...