You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by se...@apache.org on 2020/08/24 12:41:11 UTC

[bigtop] branch master updated: BIGTOP-3389 (addendum). Extend timeout for installing R packages again. (#661)

This is an automated email from the ASF dual-hosted git repository.

sekikn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bigtop.git


The following commit(s) were added to refs/heads/master by this push:
     new 85aaf58  BIGTOP-3389 (addendum). Extend timeout for installing R packages again. (#661)
85aaf58 is described below

commit 85aaf5861f903707a129be20b0c39e64dd1a5744
Author: Kengo Seki <se...@apache.org>
AuthorDate: Mon Aug 24 21:41:03 2020 +0900

    BIGTOP-3389 (addendum). Extend timeout for installing R packages again. (#661)
---
 bigtop_toolchain/manifests/renv.pp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bigtop_toolchain/manifests/renv.pp b/bigtop_toolchain/manifests/renv.pp
index 86aa2a6..30ad009 100644
--- a/bigtop_toolchain/manifests/renv.pp
+++ b/bigtop_toolchain/manifests/renv.pp
@@ -49,6 +49,6 @@ class bigtop_toolchain::renv {
   exec { 'install_r_packages':
     cwd     => "/usr/bin",
     command => "/usr/bin/R -e \"install.packages(c('devtools', 'evaluate', 'rmarkdown', 'knitr', 'roxygen2', 'testthat', 'e1071'), repos = 'http://cran.us.r-project.org')\"",
-    timeout => 3000
+    timeout => 6000
   }
 }