2 Commits

Author SHA1 Message Date
b71a238a3d 2.0.2 2022-05-19 08:48:43 +02:00
d0c7a95e16 fix(core): update 2022-05-19 08:48:43 +02:00
4 changed files with 15 additions and 11 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@pushrocks/smartmongo",
"version": "2.0.1",
"version": "2.0.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@pushrocks/smartmongo",
"version": "2.0.1",
"version": "2.0.2",
"license": "MIT",
"dependencies": {
"@pushrocks/smartdata": "^4.0.27",

View File

@@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartmongo",
"version": "2.0.1",
"version": "2.0.2",
"private": false,
"description": "create a local mongodb for testing",
"main": "dist_ts/index.js",

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smartmongo',
version: '2.0.1',
version: '2.0.2',
description: 'create a local mongodb for testing'
}

View File

@@ -14,13 +14,17 @@ export class SmartMongo {
public readyPromise = this._readyDeferred.promise;
public mongoReplicaSet: plugins.mongoPlugin.MongoMemoryReplSet;
constructor() {
}
constructor() {}
public async start(countArg: number = 1) {
this.mongoReplicaSet = await plugins.mongoPlugin.MongoMemoryReplSet.create({ replSet: { count: countArg }, instanceOpts: [{
storageEngine: 'wiredTiger'
}]});
this.mongoReplicaSet = await plugins.mongoPlugin.MongoMemoryReplSet.create({
replSet: { count: countArg },
instanceOpts: [
{
storageEngine: 'wiredTiger',
},
],
});
this._readyDeferred.resolve();
console.log(`mongoReplicaSet with ${countArg} replicas started.`);
console.log(`@pushrocks/smartmongo version ${commitinfo.version}`);
@@ -30,7 +34,7 @@ export class SmartMongo {
await this.readyPromise;
return {
mongoDbUrl: this.mongoReplicaSet.getUri(),
}
};
}
public async stop() {