65 lines
2.1 KiB
JavaScript
65 lines
2.1 KiB
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.WaitQueueTimeoutError = exports.PoolClearedOnNetworkError = exports.PoolClearedError = exports.PoolClosedError = void 0;
|
||
|
const error_1 = require("../error");
|
||
|
/**
|
||
|
* An error indicating a connection pool is closed
|
||
|
* @category Error
|
||
|
*/
|
||
|
class PoolClosedError extends error_1.MongoDriverError {
|
||
|
constructor(pool) {
|
||
|
super('Attempted to check out a connection from closed connection pool');
|
||
|
this.address = pool.address;
|
||
|
}
|
||
|
get name() {
|
||
|
return 'MongoPoolClosedError';
|
||
|
}
|
||
|
}
|
||
|
exports.PoolClosedError = PoolClosedError;
|
||
|
/**
|
||
|
* An error indicating a connection pool is currently paused
|
||
|
* @category Error
|
||
|
*/
|
||
|
class PoolClearedError extends error_1.MongoNetworkError {
|
||
|
constructor(pool, message) {
|
||
|
var _a;
|
||
|
const errorMessage = message
|
||
|
? message
|
||
|
: `Connection pool for ${pool.address} was cleared because another operation failed with: "${(_a = pool.serverError) === null || _a === void 0 ? void 0 : _a.message}"`;
|
||
|
super(errorMessage);
|
||
|
this.address = pool.address;
|
||
|
this.addErrorLabel(error_1.MongoErrorLabel.RetryableWriteError);
|
||
|
}
|
||
|
get name() {
|
||
|
return 'MongoPoolClearedError';
|
||
|
}
|
||
|
}
|
||
|
exports.PoolClearedError = PoolClearedError;
|
||
|
/**
|
||
|
* An error indicating that a connection pool has been cleared after the monitor for that server timed out.
|
||
|
* @category Error
|
||
|
*/
|
||
|
class PoolClearedOnNetworkError extends PoolClearedError {
|
||
|
constructor(pool) {
|
||
|
super(pool, `Connection to ${pool.address} interrupted due to server monitor timeout`);
|
||
|
}
|
||
|
get name() {
|
||
|
return 'PoolClearedOnNetworkError';
|
||
|
}
|
||
|
}
|
||
|
exports.PoolClearedOnNetworkError = PoolClearedOnNetworkError;
|
||
|
/**
|
||
|
* An error thrown when a request to check out a connection times out
|
||
|
* @category Error
|
||
|
*/
|
||
|
class WaitQueueTimeoutError extends error_1.MongoDriverError {
|
||
|
constructor(message, address) {
|
||
|
super(message);
|
||
|
this.address = address;
|
||
|
}
|
||
|
get name() {
|
||
|
return 'MongoWaitQueueTimeoutError';
|
||
|
}
|
||
|
}
|
||
|
exports.WaitQueueTimeoutError = WaitQueueTimeoutError;
|
||
|
//# sourceMappingURL=errors.js.map
|