partial test
This commit is contained in:
parent
ab33eee579
commit
4e3b9b88f7
8
index.js
8
index.js
|
@ -1,12 +1,12 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var path = require('path');
|
|
||||||
var numcpus = require('os').cpus().length;
|
var numcpus = require('os').cpus().length;
|
||||||
|
var sqlite3;
|
||||||
|
|
||||||
if (numcpus >= 2) {
|
if (false && numcpus >= 2) {
|
||||||
sqlite3 = require('./sqlite-client');
|
sqlite3 = require('./client');
|
||||||
} else {
|
} else {
|
||||||
sqlite3 = require('./sqlite3-wrapper');
|
sqlite3 = require('./wrapper');
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = sqlite3;
|
module.exports = sqlite3;
|
||||||
|
|
Loading…
Reference in New Issue