Skip to content

Commit a4c7468

Browse files
committed
the is no reason to restrict the queue to 1 item
1 parent ac21170 commit a4c7468

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sqlutilpy/sqlutil.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def get(query,
345345
else:
346346
res = cur.execute(query, params)
347347

348-
qIn = queue.Queue(1)
348+
qIn = queue.Queue()
349349
qOut = queue.Queue()
350350
endEvent = threading.Event()
351351
nrec = 0 # keeps the number of arrays sent to the other thread

0 commit comments

Comments
 (0)