Skip to content

Commit

Permalink
Remove duplicated word
Browse files Browse the repository at this point in the history
We print "%s success", so there's too much success going on.
  • Loading branch information
amenonsen authored Sep 3, 2019
1 parent bcbcac3 commit ca3078d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/plugins/action/wait_for_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def ping_module_test(connect_timeout):
self.do_until_success_or_timeout(self._connection.transport_test, timeout, connect_timeout, what_desc="connection port up", sleep=sleep)

# Use the ping module test to determine end-to-end connectivity
self.do_until_success_or_timeout(ping_module_test, timeout, connect_timeout, what_desc="ping module test success", sleep=sleep)
self.do_until_success_or_timeout(ping_module_test, timeout, connect_timeout, what_desc="ping module test", sleep=sleep)

except TimedOutException as e:
result['failed'] = True
Expand Down

0 comments on commit ca3078d

Please sign in to comment.