From d2dd37bca9457ac6d144e1dd89a9aed6a28a8e9f Mon Sep 17 00:00:00 2001 From: Stanley Cheung Date: Thu, 24 Sep 2015 15:27:58 -0700 Subject: php: update helloworld and route guide after beta release --- src/php/ext/grpc/package.xml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'src/php') diff --git a/src/php/ext/grpc/package.xml b/src/php/ext/grpc/package.xml index 381ae23b45..f41902f041 100644 --- a/src/php/ext/grpc/package.xml +++ b/src/php/ext/grpc/package.xml @@ -10,8 +10,8 @@ grpc-packages@google.com yes - 2015-09-01 - + 2015-09-24 + 0.6.0 0.6.0 @@ -22,12 +22,12 @@ BSD - - support per message compression disable - - expose per-call host override option - - expose connectivity API - - expose channel target and call peer - - add user-agent - - update to wrap gRPC C core library beta version 0.11.0 +- support per message compression disable +- expose per-call host override option +- expose connectivity API +- expose channel target and call peer +- add user-agent +- update to wrap gRPC C core library beta version 0.11.0 @@ -46,7 +46,7 @@ - + @@ -107,15 +107,15 @@ Update to wrap gRPC C Core version 0.10.0 beta beta - 2015-09-01 + 2015-09-24 BSD - - support per message compression disable - - expose per-call host override option - - expose connectivity API - - expose channel target and call peer - - add user-agent - - update to wrap gRPC C core library beta version 0.11.0 +- support per message compression disable +- expose per-call host override option +- expose connectivity API +- expose channel target and call peer +- add user-agent +- update to wrap gRPC C core library beta version 0.11.0 -- cgit v1.2.3 From 81449fdb7f6a04bfcb50ba5595191f0d84b6541d Mon Sep 17 00:00:00 2001 From: Stanley Cheung Date: Thu, 24 Sep 2015 16:41:57 -0700 Subject: php: need additional cli flags in scripts --- src/php/bin/interop_client.sh | 2 +- src/php/bin/run_gen_code_test.sh | 4 ++-- src/php/bin/run_tests.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/php') diff --git a/src/php/bin/interop_client.sh b/src/php/bin/interop_client.sh index 17b888dd4e..2af49cd892 100755 --- a/src/php/bin/interop_client.sh +++ b/src/php/bin/interop_client.sh @@ -31,5 +31,5 @@ set -e cd $(dirname $0) source ./determine_extension_dir.sh -php $extension_dir \ +php $extension_dir -d max_execution_time=300 \ ../tests/interop/interop_client.php $@ 1>&2 diff --git a/src/php/bin/run_gen_code_test.sh b/src/php/bin/run_gen_code_test.sh index 6e56c7207c..5dfebb42b6 100755 --- a/src/php/bin/run_gen_code_test.sh +++ b/src/php/bin/run_gen_code_test.sh @@ -32,7 +32,7 @@ set -e cd $(dirname $0) source ./determine_extension_dir.sh export GRPC_TEST_HOST=localhost:50051 -php $extension_dir $(which phpunit) -v --debug --strict \ +php $extension_dir -d max_execution_time=300 $(which phpunit) -v --debug --strict \ ../tests/generated_code/GeneratedCodeTest.php -php $extension_dir $(which phpunit) -v --debug --strict \ +php $extension_dir -d max_execution_time=300 $(which phpunit) -v --debug --strict \ ../tests/generated_code/GeneratedCodeWithCallbackTest.php diff --git a/src/php/bin/run_tests.sh b/src/php/bin/run_tests.sh index 1fe68cdab4..5adc77879a 100755 --- a/src/php/bin/run_tests.sh +++ b/src/php/bin/run_tests.sh @@ -37,5 +37,5 @@ cd src/php/bin source ./determine_extension_dir.sh # in some jenkins macos machine, somehow the PHP build script can't find libgrpc.dylib export DYLD_LIBRARY_PATH=$root/libs/$config -php $extension_dir $(which phpunit) -v --debug --strict \ +php $extension_dir -d max_execution_time=300 $(which phpunit) -v --debug --strict \ ../tests/unit_tests -- cgit v1.2.3