Recreated the tscServer.c:312 crash

This commit is contained in:
Steven Li 2020-04-27 01:58:05 -07:00
parent 73bdaae15c
commit dc2b3437bd
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ class DbState():
return "table_{}".format(tblNum)
def getTableNameToDelete(self):
if self.tableNumQueue.isEmpty:
if self.tableNumQueue.isEmpty():
return False
tblNum = self.tableNumQueue.pop() # TODO: race condition!
return "table_{}".format(tblNum)