fix(core): Fix SSH Tunnels when using private key (#10148)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™ 2024-07-23 10:08:01 +02:00 committed by GitHub
parent b07c5e2011
commit a96db344e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,7 +78,7 @@ export const sshTunnelProperties: INodeProperties[] = [
},
{
displayName: 'Private Key',
name: 'sshPrivateKey',
name: 'privateKey', // TODO: Rename to sshPrivateKey
type: 'string',
typeOptions: {
rows: 4,
@ -94,7 +94,7 @@ export const sshTunnelProperties: INodeProperties[] = [
},
{
displayName: 'Passphrase',
name: 'sshPassphrase',
name: 'passphrase', // TODO: Rename to sshPassphrase
type: 'string',
default: '',
description: 'Passphrase used to create the key, if no passphrase was used leave empty',