VMS-IDE v 1.5.55 has been released

Here you can discuss the universal Integrated Development Environment for OpenVMS.
Post Reply

Topic author
sergey_vorfolomeev
VSI Expert
Valued Contributor
Posts: 98
Joined: Thu Aug 22, 2019 12:17 am
Reputation: 0
Status: Offline

VMS-IDE v 1.5.55 has been released

Post by sergey_vorfolomeev » Thu Dec 15, 2022 2:08 am

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"
            },

Post Reply