From d375bbc38cc5283e6fa6caab51f10b3da4f4b2a1 Mon Sep 17 00:00:00 2001 From: actions-bot Date: Wed, 14 Jun 2023 07:23:21 +0000 Subject: [PATCH] Update configuration --- composer.lock | 24 ++++++++++++------------ public/sites/default/settings.php | 6 ++++++ 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/composer.lock b/composer.lock index 1a56db896..8052cfb66 100644 --- a/composer.lock +++ b/composer.lock @@ -3749,16 +3749,16 @@ }, { "name": "drupal/hdbt", - "version": "5.4.0", + "version": "5.4.1", "source": { "type": "git", "url": "https://github.com/City-of-Helsinki/drupal-hdbt.git", - "reference": "365dd7c30745b9498a1adf4360ab346f8c1f9011" + "reference": "a35ebbd4ed6927e0d70f5eebf2b58552a779ddb4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/City-of-Helsinki/drupal-hdbt/zipball/365dd7c30745b9498a1adf4360ab346f8c1f9011", - "reference": "365dd7c30745b9498a1adf4360ab346f8c1f9011", + "url": "https://api.github.com/repos/City-of-Helsinki/drupal-hdbt/zipball/a35ebbd4ed6927e0d70f5eebf2b58552a779ddb4", + "reference": "a35ebbd4ed6927e0d70f5eebf2b58552a779ddb4", "shasum": "" }, "require": { @@ -3776,10 +3776,10 @@ "Drupal" ], "support": { - "source": "https://github.com/City-of-Helsinki/drupal-hdbt/tree/5.4.0", + "source": "https://github.com/City-of-Helsinki/drupal-hdbt/tree/5.4.1", "issues": "https://github.com/City-of-Helsinki/drupal-hdbt/issues" }, - "time": "2023-06-08T12:47:19+00:00" + "time": "2023-06-13T06:49:35+00:00" }, { "name": "drupal/hdbt_admin", @@ -7019,16 +7019,16 @@ }, { "name": "firebase/php-jwt", - "version": "v6.5.0", + "version": "v6.6.0", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "e94e7353302b0c11ec3cfff7180cd0b1743975d2" + "reference": "5a9cf79b4a2eb347230384648cc7b0d68cd97faa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/e94e7353302b0c11ec3cfff7180cd0b1743975d2", - "reference": "e94e7353302b0c11ec3cfff7180cd0b1743975d2", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/5a9cf79b4a2eb347230384648cc7b0d68cd97faa", + "reference": "5a9cf79b4a2eb347230384648cc7b0d68cd97faa", "shasum": "" }, "require": { @@ -7076,9 +7076,9 @@ ], "support": { "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v6.5.0" + "source": "https://github.com/firebase/php-jwt/tree/v6.6.0" }, - "time": "2023-05-12T15:47:07+00:00" + "time": "2023-06-13T17:11:06+00:00" }, { "name": "galbar/jsonpath", diff --git a/public/sites/default/settings.php b/public/sites/default/settings.php index 7b7ede54e..91ae77dd6 100755 --- a/public/sites/default/settings.php +++ b/public/sites/default/settings.php @@ -5,6 +5,12 @@ if (PHP_SAPI === 'cli') { ini_set('memory_limit', '512M'); } +else { + // New relic triggers garbage collector which adds extra time on the request. + // The gc enabled is useful for migration drush commands and probably others. + // For non cli requests, there should not be a case where gc is called / needed. + ini_set('zend.enable_gc', 'Off'); +} if ($simpletest_db = getenv('SIMPLETEST_DB')) { $parts = parse_url($simpletest_db);