Files
micro-service-api/node_modules/@redis/client/dist/lib/commands/FAILOVER.js
2025-11-11 12:36:06 +07:00

26 lines
846 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
/**
* Starts a coordinated failover between the primary and a replica
* @param parser - The Redis command parser
* @param options - Failover options including target host, abort flag, and timeout
*/
parseCommand(parser, options) {
parser.push('FAILOVER');
if (options?.TO) {
parser.push('TO', options.TO.host, options.TO.port.toString());
if (options.TO.FORCE) {
parser.push('FORCE');
}
}
if (options?.ABORT) {
parser.push('ABORT');
}
if (options?.TIMEOUT) {
parser.push('TIMEOUT', options.TIMEOUT.toString());
}
},
transformReply: undefined
};
//# sourceMappingURL=FAILOVER.js.map