mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
⚡ Add connection timeout to MySQL credentials (#1223)
This commit is contained in:
parent
7226b5071e
commit
4fa2fb53a7
|
@ -42,5 +42,12 @@ export class MySql implements ICredentialType {
|
|||
type: 'number' as NodePropertyTypes,
|
||||
default: 3306,
|
||||
},
|
||||
{
|
||||
displayName: 'Connect Timeout',
|
||||
name: 'connectTimeout',
|
||||
type: 'number' as NodePropertyTypes,
|
||||
default: 10000,
|
||||
description: 'The milliseconds before a timeout occurs during the initial connection to the MySQL server.',
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue