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

Fix for ruamel interactions with awxkit objects #338

Merged
merged 1 commit into from
Nov 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion broker/providers/ansible_tower.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from logzero import logger

from broker import exceptions
from broker.helpers import eval_filter, find_origin
from broker.helpers import eval_filter, find_origin, yaml
from broker.settings import settings

try:
Expand All @@ -21,6 +21,12 @@
from broker import helpers
from broker.providers import Provider

# ruamel has a hard time with PseudoNamespace objects
yaml.representer.add_representer(
awxkit.utils.PseudoNamespace,
lambda dumper, data: dumper.represent_dict(dict(data)),
)


def convert_pseudonamespaces(attr_dict):
"""Recursively convert PsuedoNamespace objects into dictionaries."""
Expand Down