Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
8cf4452d
Commit
8cf4452d
authored
May 02, 2015
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix module arg parsing when 'args' are present but not a dict (v2)
parent
6a44056d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
v2/ansible/parsing/mod_args.py
+5
-1
v2/ansible/plugins/cache/__init__.py
+1
-0
No files found.
v2/ansible/parsing/mod_args.py
View file @
8cf4452d
...
...
@@ -135,7 +135,11 @@ class ModuleArgsParser:
# this can occasionally happen, simplify
if
args
and
'args'
in
args
:
args
=
args
[
'args'
]
tmp_args
=
args
[
'args'
]
del
args
[
'args'
]
if
isinstance
(
tmp_args
,
string_types
):
tmp_args
=
parse_kv
(
tmp_args
)
args
.
update
(
tmp_args
)
# finally, update the args we're going to return with the ones
# which were normalized above
...
...
v2/ansible/plugins/cache/__init__.py
View file @
8cf4452d
...
...
@@ -27,6 +27,7 @@ class FactCache(MutableMapping):
def
__init__
(
self
,
*
args
,
**
kwargs
):
self
.
_plugin
=
cache_loader
.
get
(
C
.
CACHE_PLUGIN
)
if
self
.
_plugin
is
None
:
# FIXME: this should be an exception
return
def
__getitem__
(
self
,
key
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment