Skip to content

Commit

Permalink
fixed broken sequential ping; patch version increment
Browse files Browse the repository at this point in the history
  • Loading branch information
ocket8888 committed Aug 9, 2018
1 parent 1d682b4 commit e24ae4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion connvitals/__init__.py
Expand Up @@ -29,7 +29,7 @@
"""

__version__ = "4.3.0"
__version__ = "4.3.1"
__author__ = "Brennan Fieck"

def main() -> int:
Expand Down
3 changes: 1 addition & 2 deletions connvitals/collector.py
Expand Up @@ -84,8 +84,7 @@ def run(self):
try:
self.pipe[1].send(self.result)
except OSError as e:
utils.error(e)
utils.error("WAT", True)
utils.error(OSError("Error sending results: %s" % e))

def ping(self, pool:multiprocessing.pool.ThreadPool, pinger:ping.Pinger = None):
"""
Expand Down
1 change: 1 addition & 0 deletions connvitals/ping.py
Expand Up @@ -21,6 +21,7 @@
import struct
import time
import sys
import math
from . import utils
from . import icmp

Expand Down

0 comments on commit e24ae4e

Please sign in to comment.