fix(AMQP Sender Node): Node hangs forever on disconnect (#10026)

This commit is contained in:
Michael Kret
2024-07-12 17:56:40 +03:00
committed by GitHub
parent f78f4ea349
commit 27410ab2af
2 changed files with 95 additions and 53 deletions

View File

@@ -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',
},
];
}