我试图在与Rabbitmq队列服务器的连接失败时实现一种重新连接机制,该代码仅用于消费消息,下面是我的代码(channel 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] reconnecting”,但是在未重新连接该队列之后,控制台日志中将没有其他提示。
请帮助。
答案 0 :(得分:1)
您的方法中有错字。您需要使用类似setTimeout(createConnection(), 1000);
的东西来代替ActiveSheet.PivotTables("PivotTable1").RowAxisLayout xlTabularRow