当连接到 rabbitmq 队列服务器失败时,我正在尝试实现重新连接机制。这段代码仅用于消费消息,下面是我的代码(通道 Init 函数负责初始化消费者并绑定到队列(。
connect() {
let conn = amqp.connect(queueConfig.QUEUE_SERVER_URL + "?heartbeat=60");
return conn;
}
createConnection(){
console.log("Trying to connect amqp");
let self = this;
self.connection = this.connect()
.then(function(connection){
console.log("[AMQP] connected");
connection.on("error",function(err){
if (err.message !== "Connection closing") {
console.error("[AMQP] conn error", err.message);
}
});
connection.on("close", function() {
console.error("[AMQP] reconnecting");
return setTimeout(createConnection, 1000);
});
return connection.createConfirmChannel();
})
.then(self.channelInit);
}
连接失败时,我成功收到提示"[AMQP] 重新连接",但在该队列未重新连接后,控制台日志中没有其他提示。
请帮忙。
您的方法中有拼写错误。您需要使用类似setTimeout(createConnection, 1000);
而不是setTimeout(createConnection(), 1000);