summaryrefslogtreecommitdiffstats
path: root/scripts/automation/regression/aggregate_results.py
diff options
context:
space:
mode:
authorYaroslav Brustinov <ybrustin@cisco.com>2016-02-25 10:21:58 -0500
committerYaroslav Brustinov <ybrustin@cisco.com>2016-02-25 10:21:58 -0500
commited7c04b5d7d5bb15aa13144e62caa786e73f7d05 (patch)
tree81878041aab5bedf6a4ba131c1bebcd6566851e7 /scripts/automation/regression/aggregate_results.py
parent42afa885616f4def18f5f1f1ca303efdf742356f (diff)
regression: aggregate results: remove timeout
Diffstat (limited to 'scripts/automation/regression/aggregate_results.py')
-rwxr-xr-xscripts/automation/regression/aggregate_results.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/regression/aggregate_results.py b/scripts/automation/regression/aggregate_results.py
index 8a3d0e4c..01f9ff56 100755
--- a/scripts/automation/regression/aggregate_results.py
+++ b/scripts/automation/regression/aggregate_results.py
@@ -263,7 +263,7 @@ if __name__ == '__main__':
if trex_last_commit_hash and trex_repo:
try:
print 'Getting TRex commit with hash %s' % trex_last_commit_hash
- command = 'timeout 10 git --git-dir %s show %s --quiet' % (trex_repo, trex_last_commit_hash)
+ command = 'git --git-dir %s show %s --quiet' % (trex_repo, trex_last_commit_hash)
print 'Executing: %s' % command
proc = subprocess.Popen(shlex.split(command), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
(trex_last_commit_info, stderr) = proc.communicate()