Skip to content

Commit a9755d4

Browse files
committed
[linear2] update mitogen_get_stack for new _build_stack() return value
1 parent a39169f commit a9755d4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ansible_mitogen/plugins/action/mitogen_get_stack.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@ def run(self, tmp=None, task_vars=None):
4747
'skipped': True,
4848
}
4949

50+
_, stack = self._connection._build_stack()
5051
return {
5152
'changed': True,
52-
'result': self._connection._build_stack(),
53+
'result': stack,
5354
'_ansible_verbose_always': True,
5455
}

0 commit comments

Comments
 (0)