Add connection timeout to MySQL credentials (#1223)

This commit is contained in:
Ricardo Espinoza 2021-02-04 04:13:48 -05:00 committed by GitHub
parent 7226b5071e
commit 4fa2fb53a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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