Skip to content

Commit cbdac89

Browse files
committed
added additional constructor args
1 parent 43926f3 commit cbdac89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pystackql/stackql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def __init__(self,
307307
# set execution_concurrency_limit
308308
self.execution_concurrency_limit = execution_concurrency_limit
309309
self.params.append("--execution.concurrency.limit")
310-
self.params.append(execution_concurrency_limit)
310+
self.params.append(str(execution_concurrency_limit))
311311

312312
# if custom_auth is set, use it
313313
if custom_auth is not None:

0 commit comments

Comments
 (0)