From 917e27c19b5a3425cf560ac45f5d238dc53ecb32 Mon Sep 17 00:00:00 2001 From: Jonathan Warren Date: Tue, 21 Jan 2014 01:17:36 -0500 Subject: [PATCH] minor change to new function isOurOperatingSystemLimitedToHavingVeryFewHalfOpenConnections --- src/helper_startup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helper_startup.py b/src/helper_startup.py index 0bae9496..abc4958f 100644 --- a/src/helper_startup.py +++ b/src/helper_startup.py @@ -126,7 +126,7 @@ def isOurOperatingSystemLimitedToHavingVeryFewHalfOpenConnections(): try: VER_THIS=StrictVersion(platform.version()) if sys.platform[0:3]=="win": - return StrictVersion("5.1.2600")VER_THIS + return StrictVersion("5.1.2600")<=VER_THIS and StrictVersion("6.0.6000")>=VER_THIS return False except Exception as err: print 'An Exception occurred within isOurOperatingSystemLimitedToHavingVeryFewHalfOpenConnections:', err