Skip to content

Commit 8bf1650

Browse files
committed
1 parent ff645a7 commit 8bf1650

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from thirdparty.six import unichr as _unichr
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.5.4.9"
22+
VERSION = "1.5.5.0"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

thirdparty/keepalive/keepalive.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,11 @@ def set_ready(self, connection, ready):
165165

166166
def get_ready_conn(self, host):
167167
conn = None
168-
self._lock.acquire()
169168
try:
169+
self._lock.acquire()
170170
if host in self._hostmap:
171171
for c in self._hostmap[host]:
172-
if self._readymap[c]:
172+
if self._readymap.get(c):
173173
self._readymap[c] = 0
174174
conn = c
175175
break

0 commit comments

Comments
 (0)