diff options
author | Ralph Amissah <ralph@amissah.com> | 2018-08-06 01:14:10 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:15 -0400 |
commit | 8671dcef8815777bf3fb7d433f57a53dca162a14 (patch) | |
tree | 298bc2a5280a8f0ae286564a44da947dc757494e /src/sdp/output/hub.d | |
parent | nested parallelisation, output task scheduler (diff) |
0.27.1 sqlite shared db actions cannot be parallelised
- regressive fix required
Diffstat (limited to 'src/sdp/output/hub.d')
-rw-r--r-- | src/sdp/output/hub.d | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/sdp/output/hub.d b/src/sdp/output/hub.d index 832cda8..a95c348 100644 --- a/src/sdp/output/hub.d +++ b/src/sdp/output/hub.d @@ -61,9 +61,7 @@ template outputHub() { Scheduled!()(schedule, doc_abstraction, doc_matters); } } - if (doc_matters.opt.action.sqlite_insert - || doc_matters.opt.action.sqlite_update - ) { + if (doc_matters.opt.action.sqlite_update) { msg.v("sqlite update processing..."); SQLiteHubBuildTablesAndPopulate!()(doc_abstraction, doc_matters); msg.vv("sqlite update done"); |