mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(AMQP Sender Node): Node hangs forever on disconnect (#10026)
This commit is contained in:
@@ -12,6 +12,7 @@ export class Amqp implements ICredentialType {
|
||||
displayName: 'Hostname',
|
||||
name: 'hostname',
|
||||
type: 'string',
|
||||
placeholder: 'e.g. localhost',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
@@ -24,12 +25,14 @@ export class Amqp implements ICredentialType {
|
||||
displayName: 'User',
|
||||
name: 'username',
|
||||
type: 'string',
|
||||
placeholder: 'e.g. guest',
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'Password',
|
||||
name: 'password',
|
||||
type: 'string',
|
||||
placeholder: 'e.g. guest',
|
||||
typeOptions: {
|
||||
password: true,
|
||||
},
|
||||
@@ -39,8 +42,9 @@ export class Amqp implements ICredentialType {
|
||||
displayName: 'Transport Type',
|
||||
name: 'transportType',
|
||||
type: 'string',
|
||||
placeholder: 'e.g. tcp',
|
||||
default: '',
|
||||
description: 'Optional Transport Type to use. Either tcp or tls.',
|
||||
hint: 'Optional transport type to use, either tcp or tls',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user