1. 10 Sep, 2015 2 commits
  2. 09 Sep, 2015 19 commits
  3. 08 Sep, 2015 16 commits
  4. 07 Sep, 2015 3 commits
    • Merge pull request #12268 from jaingaurav/ipv6 · 8a7a37b5
      Fix rsync connections to IPv6 addresses
      James Cammarata committed
    • Python 3: fix TypeError: unorderable types in test · 1a1c9203
      The full error was
      
      ======================================================================
      ERROR: test_task_executor_execute (units.executor.test_task_executor.TestTaskExecutor)
      ----------------------------------------------------------------------
      Traceback (most recent call last):
        File "/home/mg/src/ansible/test/units/executor/test_task_executor.py", line 252, in test_task_executor_execute
          mock_action.run.return_value = dict(ansible_facts=dict())
        File "/home/mg/src/ansible/lib/ansible/executor/task_executor.py", line 317, in _execute
          if self._task.async > 0:
      TypeError: unorderable types: MagicMock() > int()
      
      ----------------------------------------------------------------------
      
      Experiments show that Python 2 MagicMock() > 0 is true, so I'm setting
      the async property on mock_task to 1.  (If I set it to 0, the test fails
      anyway.)
      Marius Gedminas committed