1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-19 06:50:07 +03:00

M #-: Fix stdin processing in SshStreamCommand (#1043)

This commit is contained in:
Jan Orel 2021-04-09 10:36:08 +02:00 committed by GitHub
parent 0793bde8ed
commit 02736a1d85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -221,7 +221,11 @@ class SshStreamCommand < RemotesCommand
end
@stream.exec(command)
@stream.stdin.write(stdin) if stdin
if stdin
@stream.stdin.write(stdin)
@stream.stdin.close
end
@code = @stream.wait_for_command(@timeout)