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

Agent spawner configurations should be accessible #154

Closed
wants to merge 1 commit into from
Closed
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
12 changes: 11 additions & 1 deletion resalloc_agent_spawner/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,17 @@
group.setdefault("cmd_terminate", "/bin/true")
group.setdefault("cmd_try_release", "/bin/false")
group.setdefault("tags", ["please-specify-some-tags"])
return config

# This dictionary is passed to redis APIs and other parts of code which
# expects configurations to be attributes rather than key/value pairs.
# This class works around this requirement.
# Thanks to https://stackoverflow.com/a/14620633
class AttrDict(dict):

Check warning

Code scanning / vcs-diff-lint

get_config.AttrDict: Missing class docstring Warning

get_config.AttrDict: Missing class docstring
def __init__(self, *args, **kwargs):
super(AttrDict, self).__init__(*args, **kwargs)

Check warning

Code scanning / vcs-diff-lint

get_config.AttrDict.init: Consider using Python 3 style super() without arguments Warning

get_config.AttrDict.__init__: Consider using Python 3 style super() without arguments
self.__dict__ = self

return AttrDict(config)


class CmdCallerMixin:
Expand Down
Loading