Closed giffels closed 1 year ago
All modified and coverable lines are covered by tests :white_check_mark:
Comparison is base (
36ac7c1
) 98.86% compared to head (5bc20d4
) 98.86%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
During migration of our active C/T instances to a different host, we are using the first time the
HTCondorSiteAdapter
in combination with theSSHExecutor
. In addition, theHTCondorSiteAdapter
is the only adapter that uses thestdin
to add input to thecondor_submit
.That triggered a bug in the
SSHExecutor
, which assumed thatasyncssh
requiresstdin
to be in bytes format. However, according to the documentation, it is required to be in string format.This pull request changes the type of
SSHExecutor
from byte format to string format.