aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/tests/interop/interop_client.php
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanleycheung@google.com>2015-08-18 16:19:38 -0700
committerGravatar Stanley Cheung <stanleycheung@google.com>2015-08-19 12:31:59 -0700
commitc0c9ba9e429cb6aac2653f16cf171bf0c64920c8 (patch)
tree3c1d7f76cdbb567207a59fa1351e67973a2ba709 /src/php/tests/interop/interop_client.php
parent89bede02f16905eb48b71710dc4ea2542b3a5ca1 (diff)
php: fix timeout interop test, use 1ms as timeout
Diffstat (limited to 'src/php/tests/interop/interop_client.php')
-rwxr-xr-xsrc/php/tests/interop/interop_client.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/php/tests/interop/interop_client.php b/src/php/tests/interop/interop_client.php
index 44e6242c29..376d306da0 100755
--- a/src/php/tests/interop/interop_client.php
+++ b/src/php/tests/interop/interop_client.php
@@ -271,7 +271,7 @@ function cancelAfterFirstResponse($stub) {
}
function timeoutOnSleepingServer($stub) {
- $call = $stub->FullDuplexCall(array('timeout' => 500000));
+ $call = $stub->FullDuplexCall(array('timeout' => 1000));
$request = new grpc\testing\StreamingOutputCallRequest();
$request->setResponseType(grpc\testing\PayloadType::COMPRESSABLE);
$response_parameters = new grpc\testing\ResponseParameters();