Maurice Escher

Results 14 comments of Maurice Escher

I don't think so, retry has been refactored to set the api path https://github.com/fog/fog-openstack/blob/f72d2fce5fc0c89f9a901eb97767b095f4b3522a/lib/fog/openstack/core.rb#L85-L92 which gets done in the glance parts https://github.com/fog/fog-openstack/blob/4217d76368aa0c570b268e96a3cf21f760ccc967/lib/fog/image/openstack/v2.rb#L129-L135 https://github.com/fog/fog-openstack/blob/4217d76368aa0c570b268e96a3cf21f760ccc967/lib/fog/image/openstack/v1.rb#L121-L127 and thus should work

I agree, I think the culprit is here on the update: https://github.com/fog/fog-openstack/blob/v0.1.17/lib/fog/network/openstack/models/router.rb#L53 If you would like to provide a fixing pull request, I'm happy to review.

Hi Marthyn, your suggestion sounds fine, a PR is the way to go 👍 Cheers, Maurice

I think this should not fail, if the user does not provide the network interface details, but instead fall back to the old behaviour. So that we are not breaking...

Hi, can you check/post your fog connection params, please? It should look something like this: ```ruby { openstack_auth_url: "http://10.113.65.80:5000/v3/auth/tokens", openstack_username: "admin", openstack_api_key: "cEA4fcGlD77AOtVPyodciSukxgBxH9juOpTKz6FZ", openstack_domain_name: "Default" } ```

Ah sorry, you want an unscoped token, so it should look like this: ```ruby { openstack_auth_url: "http://10.113.65.80:5000/v3/auth/tokens", openstack_username: "admin", openstack_api_key: "cEA4fcGlD77AOtVPyodciSukxgBxH9juOpTKz6FZ", openstack_user_domain: "Default" } ```

It has always been that way, ever since it was introduced 4 years ago https://github.com/fog/fog/commit/d37d2e802a4f788cc98a1fc820a475fa679d50f9 So it simply is not implemented, yet. Feel free to do this and provide a...

good point, it is most likely a copy & paste error here: https://github.com/fog/fog-openstack/blob/master/lib/fog/image/openstack/v2/models/images.rb#L29 `is_public` is a v1 method, this should use `visibility` instead If you would like to provide a...

Correct, it comes down to the fact that https://github.com/fog/fog-openstack/blob/master/lib/fog/identity/openstack/v3/requests/list_users.rb#L17 does not return the mocked users I would be happy to review if someone provides a PR for that :)

Hi @kowsalyapalaniappan, I'm happy about every added API support 👍