We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9f93e3a + d30a13e commit 27055d0Copy full SHA for 27055d0
src/driver/express/ExpressDriver.ts
@@ -126,7 +126,9 @@ export class ExpressDriver extends BaseDriver implements Driver {
126
};
127
128
if (isPromiseLike(checkResult)) {
129
- checkResult.then(result => handleError(result));
+ checkResult
130
+ .then(result => handleError(result))
131
+ .catch(error => this.handleError(error, actionMetadata, action));
132
} else {
133
handleError(checkResult);
134
}
0 commit comments