Recreated the tscServer.c:312 crash
This commit is contained in:
parent
73bdaae15c
commit
dc2b3437bd
|
@ -350,7 +350,7 @@ class DbState():
|
||||||
return "table_{}".format(tblNum)
|
return "table_{}".format(tblNum)
|
||||||
|
|
||||||
def getTableNameToDelete(self):
|
def getTableNameToDelete(self):
|
||||||
if self.tableNumQueue.isEmpty:
|
if self.tableNumQueue.isEmpty():
|
||||||
return False
|
return False
|
||||||
tblNum = self.tableNumQueue.pop() # TODO: race condition!
|
tblNum = self.tableNumQueue.pop() # TODO: race condition!
|
||||||
return "table_{}".format(tblNum)
|
return "table_{}".format(tblNum)
|
||||||
|
|
Loading…
Reference in New Issue