mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
Update GenericFunctions.ts
Added connection_name, to track on rabbitmq host
This commit is contained in:
parent
d2dd1796a8
commit
b4bd93b845
|
@ -22,6 +22,11 @@ export async function rabbitmqConnect(
|
|||
}, {} as IDataObject) as amqplib.Options.Connect;
|
||||
|
||||
const optsData: IDataObject = {};
|
||||
|
||||
optsData.clientProperties = {
|
||||
connection_name: "n8n" // should customize this
|
||||
};
|
||||
|
||||
if (credentials.ssl) {
|
||||
credentialData.protocol = 'amqps';
|
||||
|
||||
|
|
Loading…
Reference in a new issue