-
Notifications
You must be signed in to change notification settings - Fork 898
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Always pass the URL path to the oVirt SDK #14159
Always pass the URL path to the oVirt SDK #14159
Conversation
Currently the 'path' component of the URL is not always explicitly passed to the constructor of the oVirt SDK connection, it is only passed if explicitly provided by the caller. This patch changes the oVirt provider so that the path is always passed, taking it from the endpoint table if not explicitly provided by the caller. Signed-off-by: Juan Hernandez <juan.hernandez@redhat.com>
@borod108 @pkliczewski please review. |
Checked commit https://github.com/jhernand/manageiq/commit/15c965f5d83828189d59d041fc95a325efa1a7b6 with ruby 2.2.6, rubocop 0.47.1, and haml-lint 0.20.0 |
@durandom please review. |
@oourfali the change in this PR looks trivial. Please give your 👍 so we can merge. |
I see @pkliczewski approved, so we can proceed with this one. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Currently the 'path' component of the URL is not always explicitly
passed to the constructor of the oVirt SDK connection, it is only passed
if explicitly provided by the caller. This patch changes the oVirt
provider so that the path is always passed, taking it from the endpoint
table if not explicitly provided by the caller.