From 9bd35adcfb51be205e0da29137ef37d0b22cbd16 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Sun, 27 Sep 2020 11:22:10 -0700 Subject: [PATCH] more debugging, synchronize is being weird on azure --- ansible_mitogen/mixins.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ansible_mitogen/mixins.py b/ansible_mitogen/mixins.py index 91a83dd9..dc33901b 100644 --- a/ansible_mitogen/mixins.py +++ b/ansible_mitogen/mixins.py @@ -381,6 +381,11 @@ class ActionModuleMixin(ansible.plugins.action.ActionBase): # going to verify that synchronize is actually loading in Azure DevOps as expected # this fails locally but is showing that azure isn't loading the collections right since it's not failing online # jjj + # what is going on!? + if 'synchronize' in module_name: + print('*' * 80) + print(module_name) + if module_name == 'ansible.posix.synchronize': A