Skip to content

Commit

Permalink
Increase command timeout for copying ella folder
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyingPumba committed Jul 5, 2021
1 parent 4ffd1d3 commit f4e0ad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coverage/ella/ella.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def prepare_ella_folder_for_device(self, device: Device):

# copy folder and change port in ELLA settings
run_cmd(f"rm -rf {device_ella_folder_path}")
run_cmd(f"cp -r {self.ella_original_folder_path} {device_ella_folder_path}")
run_cmd(f"cp -r {self.ella_original_folder_path} {device_ella_folder_path}", timeout=300)
run_cmd(f"sed -i \'s/ella.server.port=23745/ella.server.port={device_ella_port}/g\' {device_ella_settings_path}")

self.devices_with_ella_folder.add(device.name)
Expand Down

0 comments on commit f4e0ad9

Please sign in to comment.