Page 1 of 1

VMS-IDE v 1.5.55 has been released

Posted: Thu Dec 15, 2022 2:08 am
by sergey_vorfolomeev
VMS-IDE v 1.5.55 has been released

The addConnectConfig field is added to the host configuration. All the values of this field are copied to the resulting connection configuration as is.

Therefore, for example, if one need to add readyTimeout to the ConnectConfig for SSH2, just add this field to addConnectConfig like this:

Code: Select all

        "hosts": [
            {
                "host": "192.168.99.10",
                "keyFile": "c:\\users\\lenovo\\.ssh\\id_rsa",
                "password": "",
                "port": 22,
                "username": "vorfolomeev",
                "debug": false,
                "skipSignatureVerification": false,
                "supportSetFileTime": true,
                "unzipCmd": "",
                "zipCmd": "",
                "addConnectConfig": {
                    "readyTimeout": 30000
                },
                "label": "vms-loc"
            },