You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							64 lines
						
					
					
						
							2.1 KiB
						
					
					
				
			
		
		
	
	
							64 lines
						
					
					
						
							2.1 KiB
						
					
					
				| "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) {
 | |
|         const errorMessage = message
 | |
|             ? message
 | |
|             : `Connection pool for ${pool.address} was cleared because another operation failed with: "${pool.serverError?.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
 |