Skip to content

Commit

Permalink
print sentinels in new line for php 7.2 (apache#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
csantanapr authored and jasonpet committed Nov 12, 2018
1 parent 1604ee3 commit dc40173
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/php7.2Action/router.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@ function unzipString(string $b64Data, $dir): void
function writeSentinels() : void
{
// write out sentinels as we've finished all log output
writeTo("php://stderr", "XXX_THE_END_OF_A_WHISK_ACTIVATION_XXX");
writeTo("php://stdout", "XXX_THE_END_OF_A_WHISK_ACTIVATION_XXX");
writeTo("php://stderr", "\nXXX_THE_END_OF_A_WHISK_ACTIVATION_XXX");
writeTo("php://stdout", "\nXXX_THE_END_OF_A_WHISK_ACTIVATION_XXX");
}

/**
Expand Down

0 comments on commit dc40173

Please sign in to comment.