~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_ssh_transport.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-10-07 12:45:51 UTC
  • mfrom: (5459.4.1 561061-ssh-protocol)
  • Revision ID: pqm@pqm.ubuntu.com-20101007124551-zfqhlkqdegiy7otp
(vila) Don't force openssh to use protocol=2 (Neil Martinsen-Burrell)

Show diffs side-by-side

added added

removed removed

Lines of Context:
167
167
            vendor._get_vendor_specific_argv(
168
168
                "user", "host", 100, command=["bzr"]),
169
169
            ["ssh", "-oForwardX11=no", "-oForwardAgent=no",
170
 
                "-oClearAllForwardings=yes", "-oProtocol=2",
 
170
                "-oClearAllForwardings=yes",
171
171
                "-oNoHostAuthenticationForLocalhost=yes",
172
172
                "-p", "100",
173
173
                "-l", "user",
180
180
            vendor._get_vendor_specific_argv(
181
181
                "user", "host", 100, subsystem="sftp"),
182
182
            ["ssh", "-oForwardX11=no", "-oForwardAgent=no",
183
 
                "-oClearAllForwardings=yes", "-oProtocol=2",
 
183
                "-oClearAllForwardings=yes",
184
184
                "-oNoHostAuthenticationForLocalhost=yes",
185
185
                "-p", "100",
186
186
                "-l", "user",