Skip to content

Commit

Permalink
Cleaning up some vvvv log messages in accelerate
Browse files Browse the repository at this point in the history
  • Loading branch information
jimi-c committed Oct 1, 2013
1 parent 8c17711 commit 12f6957
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ansible/runner/connection_plugins/accelerate.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,10 +191,10 @@ def exec_command(self, cmd, tmp_path, sudo_user, sudoable=False, executable='/bi
response = utils.parse_json(response)
if "pong" in response:
# it's a keepalive, go back to waiting
vvvv("received a keepalive packet")
vvvv("%s: received a keepalive packet" % self.host)
continue
else:
vvvv("received the response")
vvvv("%s: received the response" % self.host)
break

return (response.get('rc',None), '', response.get('stdout',''), response.get('stderr',''))
Expand Down

0 comments on commit 12f6957

Please sign in to comment.