Skip to content
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

Fixes #23720: Ansible collection server_settings module fails to define the settings through API #68

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/modules/server_settings.py
Expand Up @@ -68,7 +68,7 @@
import json

from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.urls import basic_auth_header, fetch_url
from ansible.module_utils.urls import basic_auth_header, fetch_url, open_url

__metaclass__ = type

Expand Down Expand Up @@ -119,7 +119,7 @@ def _send_request(self, url, data=None, headers=None, method='GET'):
headers = []

full_url = '{rudder_url}{path}'.format(
rudder_url=self.rudder_url, path=path
rudder_url=self.rudder_url, path=url
)

try:
Expand Down