Skip to content

Commit

Permalink
Minor Arista SCP timing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Mar 7, 2018
1 parent 448fafc commit a478143
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netmiko/arista/arista_ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def remote_md5(self, base_cmd='verify /md5', remote_file=None):
elif self.direction == 'get':
remote_file = self.source_file
remote_md5_cmd = "{} file:{}/{}".format(base_cmd, self.file_system, remote_file)
dest_md5 = self.ssh_ctl_chan.send_command(remote_md5_cmd, max_loops=1500)
dest_md5 = self.ssh_ctl_chan.send_command(remote_md5_cmd, max_loops=750, delay_factor=2)
dest_md5 = self.process_md5(dest_md5)
return dest_md5

Expand Down

0 comments on commit a478143

Please sign in to comment.