Skip to content

Commit

Permalink
StrictHostKeyChecking disabled for ssh connection in test_domainmgr.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sadov committed Feb 20, 2020
1 parent 0e4a76a commit 83316f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_domainmgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
print("Usage: %s port [app-name]" % sys.argv[0])
sys.exit()

eve=spawn('ssh -p %s localhost' % sys.argv[1], timeout=None)
eve=spawn('ssh -o StrictHostKeyChecking=no -p %s localhost' % sys.argv[1], timeout=None)
eve.sendline('')
eve.expect('\(ns: pillar\) (.*):/#')

Expand Down

0 comments on commit 83316f6

Please sign in to comment.