Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mitogen
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
mitogen
Commits
198bec33
Commit
198bec33
authored
Mar 26, 2018
by
David Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
issue #168: ansible: Mitogen must also ignore the extra arguments.
parent
26051caf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
ansible_mitogen/connection.py
ansible_mitogen/connection.py
+2
-1
No files found.
ansible_mitogen/connection.py
View file @
198bec33
...
...
@@ -82,7 +82,7 @@ class Connection(ansible.plugins.connection.ConnectionBase):
#: Set to 'mitogen_ssh_discriminator' by on_action_run()
mitogen_ssh_discriminator
=
None
def
__init__
(
self
,
play_context
,
new_stdin
,
original_transport
):
def
__init__
(
self
,
play_context
,
new_stdin
,
original_transport
,
**
kwargs
):
assert
ansible_mitogen
.
process
.
MuxProcess
.
unix_listener_path
,
(
'The "mitogen" connection plug-in may only be instantiated '
'by the "mitogen" strategy plug-in.'
...
...
@@ -90,6 +90,7 @@ class Connection(ansible.plugins.connection.ConnectionBase):
self
.
original_transport
=
original_transport
self
.
transport
=
original_transport
self
.
kwargs
=
kwargs
super
(
Connection
,
self
).
__init__
(
play_context
,
new_stdin
)
def
__del__
(
self
):
...
...
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