Fix conn_type assignment (#24697)

This should be a single equal, not a double-one
pull/24703/head
Ricardo Carrillo Cruz 8 years ago committed by GitHub
parent 0210a1a7dc
commit 14b1405ee4

@ -724,7 +724,7 @@ class TaskExecutor:
# if using persistent paramiko connections (or the action has set the FORCE_PERSISTENT_CONNECTION attribute to True),
# then we use the persistent connection plugion. Otherwise load the requested connection plugin
if C.USE_PERSISTENT_CONNECTIONS or getattr(self, 'FORCE_PERSISTENT_CONNECTION', False):
conn_type == 'persistent'
conn_type = 'persistent'
else:
conn_type = self._play_context.connection

Loading…
Cancel
Save