Skip to content

Commit

Permalink
make sure updates can run after bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkeschiren committed Dec 16, 2024
1 parent a559b98 commit f8452f4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Context/BaseContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,10 @@ protected function generatePublicContainer($container, $release)

$idSite = $container['idsite'];
$idContainer = $container['idcontainer'];
$isTagFireLimitAllowedInPreviewMode = $container['isTagFireLimitAllowedInPreviewMode'] ? 1 : 0;
$isTagFireLimitAllowedInPreviewMode = 0;
if (isset($container['isTagFireLimitAllowedInPreviewMode'])) {
$isTagFireLimitAllowedInPreviewMode = $container['isTagFireLimitAllowedInPreviewMode'] ? 1 : 0;

Check failure on line 92 in Context/BaseContext.php

View workflow job for this annotation

GitHub Actions / PHPCS

BaseContext.php: Line indented incorrectly; expected at least 12 spaces, found 10
}
$idContainerVersion = $release['idcontainerversion'];
$container['idcontainerversion'] = $idContainerVersion;
$environment = $release['environment'];
Expand Down

0 comments on commit f8452f4

Please sign in to comment.