From 9277ce1a6579b9b58c705fa1a9bf9f4fbcac731c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Sun, 13 Jun 2021 09:46:15 +0200 Subject: [PATCH] Update EGG::update time_limit --- www/commands/extendedgitgraph_redraw.php | 2 +- www/commands/extendedgitgraph_refresh.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/www/commands/extendedgitgraph_redraw.php b/www/commands/extendedgitgraph_redraw.php index 05be699..c045c57 100644 --- a/www/commands/extendedgitgraph_redraw.php +++ b/www/commands/extendedgitgraph_redraw.php @@ -6,6 +6,6 @@ require_once (__DIR__ . '/../internals/website.php'); /** @var Website $SITE */ global $SITE; -set_time_limit(900); // 15min +set_time_limit(15*60); // 15min $v = $SITE->modules->ExtendedGitGraph()->updateCache(); diff --git a/www/commands/extendedgitgraph_refresh.php b/www/commands/extendedgitgraph_refresh.php index eff8dcd..3c11d58 100644 --- a/www/commands/extendedgitgraph_refresh.php +++ b/www/commands/extendedgitgraph_refresh.php @@ -5,7 +5,7 @@ require_once (__DIR__ . '/../internals/website.php'); /** @var URLRoute $ROUTE */ global $ROUTE; /** @var Website $SITE */ global $SITE; -set_time_limit(900); // 15min +set_time_limit(60*60); // 60min $r1 = $SITE->modules->ExtendedGitGraph()->update(); if (!$r1)