This is an automated email from the ASF dual-hosted git repository.

japetrsn pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-openwhisk-runtime-php.git


The following commit(s) were added to refs/heads/master by this push:
     new dc40173  print sentinels in new line for php 7.2 (#44)
dc40173 is described below

commit dc40173508859d20da03883fb94187142076ca48
Author: Carlos Santana <csantan...@apache.org>
AuthorDate: Mon Nov 12 16:35:24 2018 -0500

    print sentinels in new line for php 7.2 (#44)
---
 core/php7.2Action/router.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/php7.2Action/router.php b/core/php7.2Action/router.php
index 6346800..c3ada90 100644
--- a/core/php7.2Action/router.php
+++ b/core/php7.2Action/router.php
@@ -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");
 }
 
 /**

Reply via email to