mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-26 06:31:23 -07:00
Cleaning up some vvvv log messages in accelerate
This commit is contained in:
parent
8c17711247
commit
12f6957596
1 changed files with 2 additions and 2 deletions
|
@ -191,10 +191,10 @@ class Connection(object):
|
||||||
response = utils.parse_json(response)
|
response = utils.parse_json(response)
|
||||||
if "pong" in response:
|
if "pong" in response:
|
||||||
# it's a keepalive, go back to waiting
|
# it's a keepalive, go back to waiting
|
||||||
vvvv("received a keepalive packet")
|
vvvv("%s: received a keepalive packet" % self.host)
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
vvvv("received the response")
|
vvvv("%s: received the response" % self.host)
|
||||||
break
|
break
|
||||||
|
|
||||||
return (response.get('rc',None), '', response.get('stdout',''), response.get('stderr',''))
|
return (response.get('rc',None), '', response.get('stdout',''), response.get('stderr',''))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue