You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get an 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 <host>`
${USER}= Set Variable <user>
${PASS}= Set Variable <password>
Open Connection ${HOST}
Login ${USER} ${PASS} delay=1
Execute Command mkdir test-folder
The text was updated successfully, but these errors were encountered:
I get an 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:
Sample code
The text was updated successfully, but these errors were encountered: