Skip to content

Commit

Permalink
Paramiko > 3.4.1 cause to SSH session not active
Browse files Browse the repository at this point in the history
  • Loading branch information
ebattat committed Sep 27, 2024
1 parent 02614ff commit 2ac2202
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions benchmark_runner/main/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
from multiprocessing import set_start_method
import platform

# @todo paramiko==3.4.1/3.5.0 cause to "RunCommandError: Cannot run shell command: SSH session not active"
import warnings
from cryptography.utils import CryptographyDeprecationWarning
warnings.filterwarnings("ignore", category=CryptographyDeprecationWarning)

from benchmark_runner.main.environment_variables import *
from benchmark_runner.common.logger.logger_time_stamp import logger_time_stamp, logger
from benchmark_runner.benchmark_operator.benchmark_operator_workloads import BenchmarkOperatorWorkloads
Expand Down

0 comments on commit 2ac2202

Please sign in to comment.