From 4c20fe814a965064efa5c5b89396671119e76c55 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Fri, 13 Nov 2020 13:37:06 +0000 Subject: [PATCH] workloads/exoplayer: Remove timeout in file transfer Remove the explict timeout when pushing a media file to the device. Allow the polling mechanims to monitor the transfer. --- wa/workloads/exoplayer/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wa/workloads/exoplayer/__init__.py b/wa/workloads/exoplayer/__init__.py index a9dc62e7..2dd53550 100644 --- a/wa/workloads/exoplayer/__init__.py +++ b/wa/workloads/exoplayer/__init__.py @@ -173,7 +173,7 @@ class ExoPlayer(ApkWorkload): os.path.basename(self.host_video_file)) if self.force_dependency_push or not self.target.file_exists(self.device_video_file): self.logger.info('Copying {} to device.'.format(self.host_video_file)) - self.target.push(self.host_video_file, self.device_video_file, timeout=120) + self.target.push(self.host_video_file, self.device_video_file) self._original_orientation = self.target.get_rotation() self.target.set_rotation(1 if self.landscape else 0)