This commit is contained in:
Jaremy Creechley 2023-09-14 20:43:58 -07:00
parent 6e39b2234a
commit 50b0c6ec11
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300
2 changed files with 1 additions and 2 deletions

View File

@ -211,7 +211,7 @@ proc newThreadProxyDatastore*(
try:
value[].ds = ds
value[].tp = Taskpool.new(num_threads = 2)
value[].tp = Taskpool.new(num_threads = 6)
except Exception as exc:
return err((ref DatastoreError)(msg: exc.msg))

View File

@ -103,4 +103,3 @@ proc wait*(sig: SharedSignal): Future[void] =
proc fireSync*(sig: SharedSignal): Result[bool, string] =
sig[].sigptr.fireSync()