@sol-x/couchdb-migration-store
Advanced tools
Comparing version
@@ -31,3 +31,9 @@ "use strict"; | ||
const dataToStore = { _id: "1", lastRun, migrations }; | ||
await this.waitForCouchdb(); | ||
try { | ||
await this.waitForCouchdb(); | ||
} | ||
catch (err) { | ||
callback(err); | ||
return; | ||
} | ||
const nano = nano_1.default(this.couchDbUrl); | ||
@@ -52,3 +58,9 @@ try { | ||
async load(callback) { | ||
await this.waitForCouchdb(); | ||
try { | ||
await this.waitForCouchdb(); | ||
} | ||
catch (err) { | ||
callback(err); | ||
return; | ||
} | ||
const nano = nano_1.default(this.couchDbUrl); | ||
@@ -55,0 +67,0 @@ try { |
{ | ||
"name": "@sol-x/couchdb-migration-store", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "couchdb migration store for node-migrate", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -11,4 +11,4 @@ import Nano from "nano"; | ||
type MigrationSaveCallback = (err?: Error) => {}; | ||
type MigrationLoadCallback = (err: Error | undefined, data?: MigrationData | {}) => {}; | ||
type MigrationSaveCallback = (err?: Error) => void; | ||
type MigrationLoadCallback = (err: Error | undefined, data?: MigrationData | {}) => void; | ||
@@ -45,3 +45,8 @@ class CouchDbMigrationStore { | ||
await this.waitForCouchdb(); | ||
try { | ||
await this.waitForCouchdb(); | ||
} catch (err) { | ||
callback(err); | ||
return; | ||
} | ||
@@ -66,3 +71,8 @@ const nano = Nano(this.couchDbUrl); | ||
async load(callback: MigrationLoadCallback): Promise<void> { | ||
await this.waitForCouchdb(); | ||
try { | ||
await this.waitForCouchdb(); | ||
} catch (err) { | ||
callback(err); | ||
return; | ||
} | ||
@@ -69,0 +79,0 @@ const nano = Nano(this.couchDbUrl); |
Sorry, the diff of this file is not supported yet
8342
6.7%179
14.01%