This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // server/plugins/alb-timeout-handler.ts | |
| export default defineNitroPlugin((nitroApp) => { | |
| // If ALB timeout is 60s, set app timeout to 58s | |
| const ALB_TIMEOUT = 60000 | |
| const APP_TIMEOUT = ALB_TIMEOUT - 2000 // 2s buffer | |
| nitroApp.hooks.hook('request', async (event) => { | |
| const timeout = setTimeout(() => { | |
| // Check if response was already sent | |
| if (!event.node.res.headersSent) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 8c466ff15549abc93ca62bad91db33a73472c262 Mon Sep 17 00:00:00 2001 | |
| From: Wolfgang Ziegler // fago <[email protected]> | |
| Date: Mon, 14 Jul 2025 13:40:52 +0200 | |
| Subject: [PATCH] fix: MCD-463: assign correct permissions | |
| --- | |
| recipes/mossbo_recipe_config_management/recipe.yml | 13 +++---------- | |
| 1 file changed, 3 insertions(+), 10 deletions(-) | |
| diff --git a/recipe.yml b/recipe.yml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From a473567e3869cb3cab6d177b74867c74881d9512 Mon Sep 17 00:00:00 2001 | |
| From: Wolfgang Ziegler // fago <[email protected]> | |
| Date: Fri, 11 Jul 2025 15:51:04 +0200 | |
| Subject: [PATCH] fix config log settings | |
| --- | |
| .../config/config_log.settings.yml | 15 +++++++++++++-- | |
| 1 file changed, 13 insertions(+), 2 deletions(-) | |
| diff --git a/recipes/mossbo_recipe_config_management/config/config_log.settings.yml b/recipes/mossbo_recipe_config_management/config/config_log.settings.yml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/dotenv/loader.php b/dotenv/loader.php | |
| index 8892c11..3399685 100644 | |
| --- a/dotenv/loader.php | |
| +++ b/dotenv/loader.php | |
| @@ -227,15 +227,18 @@ public static function getSiteVariables($site = NULL, $site_variant = '') { | |
| // The following process must follow the same logic as loader.sh, but instead | |
| // evaluating .env content with bash we use dotenv to parse it. | |
| $dotenv = new Dotenv(); | |
| - $dotenv->populate($dotenv->parse(PhappEnvironmentLoader::getDotenvFiles())); | |
| - $dotenv->populate($dotenv->parse(PhappEnvironmentLoader::determineEnvironment())); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From c351ed55488c7a276a9e3be04ccf1b8276ae17d1 Mon Sep 17 00:00:00 2001 | |
| From: MilanG <[email protected]> | |
| Date: Mon, 1 Nov 2021 10:53:08 +0100 | |
| Subject: [PATCH] Changing protocol HTTP -> HTTPS for YouTube remote thumbnail | |
| image path. | |
| --- | |
| src/Plugin/video_embed_field/Provider/YouTube.php | 2 +- | |
| 1 file changed, 1 insertion(+), 1 deletion(-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From eda221fddcff4f97fb921e7889b7ac89ee8357f0 Mon Sep 17 00:00:00 2001 | |
| From: acbramley <[email protected]> | |
| Date: Tue, 4 Jan 2022 00:58:31 +0000 | |
| Subject: [PATCH] Escape pipe characters in regex | |
| --- | |
| core/modules/media/src/OEmbed/Endpoint.php | 2 +- | |
| 1 file changed, 1 insertion(+), 1 deletion(-) | |
| diff --git a/core/modules/media/src/OEmbed/Endpoint.php b/core/modules/media/src/OEmbed/Endpoint.php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: lib/Drupal/Core/Ajax/OpenOffCanvasDialogCommand.php | |
| IDEA additional info: | |
| Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
| <+>UTF-8 | |
| =================================================================== | |
| diff --git a/lib/Drupal/Core/Ajax/OpenOffCanvasDialogCommand.php b/lib/Drupal/Core/Ajax/OpenOffCanvasDialogCommand.php | |
| --- a/lib/Drupal/Core/Ajax/OpenOffCanvasDialogCommand.php | |
| +++ b/lib/Drupal/Core/Ajax/OpenOffCanvasDialogCommand.php (date 1633988933771) | |
| @@ -57,6 +57,8 @@ | |
| if (!isset($this->dialogOptions['width'])) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class CustomElementsFormController extends HtmlFormController { | |
| /** | |
| * {@inheritDoc} | |
| */ | |
| public function getContentResult(Request $request, RouteMatchInterface $route_match) { | |
| $form = parent::getContentResult($request, $route_match); | |
| return $this->getCustomElementsContentResult($form); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Implements hook_prepprocess_TEMPLATE for the "node" template. | |
| */ | |
| function recipes_preprocess_node(&$variables) { | |
| // Add your changes here. | |
| // Add cacheability metadata to ensure config changes are reflected. | |
| $cache_extras = []; | |
| \Drupal\Core\Render\BubbleableMetadata::createFromObject($config) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Drupal\module\Plugin\Block; | |
| use Drupal\contextual_views\Plugin\Block\ContextualViewsBlock; | |
| use Drupal\Core\Form\FormStateInterface; | |
| use Drupal\node\NodeInterface; | |
| /** | |
| * Provides a 'NewsByChannel' block. |
NewerOlder