Exception when calling Execute Command - Channel closed

Hello,

Using the SSH library, I get a SSHException: Channel closed exception when calling Execute Command. All other functions within the library work; it’s only Execute Command that returns the exception. Host, User, and Pass are valid as I can execute the mkdir Command outside (windows shell) of Robot without issue. The FTP server logs show nothing unusual, just the connection open/close - no warnings/exceptions.

Using:
• robotframework-sshlibrary=3.8.0
• python=3.9.13
• rpaframework==22.0.0

Sample code

FTP Create Folder

${HOST}= Set Variable `
${USER}= Set Variable
${PASS}= Set Variable

Open Connection ${HOST}
Login ${USER} ${PASS} delay=1
Execute Command mkdir test-folder