When 'ansible_user' is mistakenly set to an MFA user, tqm hangs indefinitely.
I set a break point in 'task_queue_manager.py' here:
play_return = strategy.run(iterator, play_context)
But I can't find anything I can use to stop, end, or error out the process.
Below is sudo code representing a guess to how it could work.
timeout = 300
result = tqm.run(play)
if not result and timeout and tqm is not None:
tqm.cleanup()
Does anyone know of a solution directly using tqm or even a workaround like what I've eluded to above?