BugFix: reconnect delay

This commit is contained in:
Olivier Verhaegen 2023-04-17 14:53:15 +02:00 committed by GitHub
parent 71737046fd
commit ed74a69b58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,7 +119,7 @@ module.exports = function(RED) {
protocolVersion: node.protocolVersion, protocolVersion: node.protocolVersion,
reconnectOpts: { reconnectOpts: {
retries: node.reconnectRetries * 1, retries: node.reconnectRetries * 1,
delay: node.reconnectDelay * 1 delay: node.reconnectDelay * 1000
}, },
vhost: node.vhost vhost: node.vhost
}; };