diff --git a/src/php/tests/interop/interop_client.php b/src/php/tests/interop/interop_client.php index ed7b073f8f6a2f4788cf826f15f1c3cf895ce2ce..bd15ee430315cf4bdeceffa940f1f1b74e62d086 100755 --- a/src/php/tests/interop/interop_client.php +++ b/src/php/tests/interop/interop_client.php @@ -368,6 +368,11 @@ switch ($args['test_case']) { case 'jwt_token_creds': jwtTokenCreds($stub, $args); break; + case 'cancel_after_begin': + // Currently unimplementable with the current API design + // Specifically, in the ClientStreamingCall->start() method, the + // messages are sent immediately after metadata is sent. There is + // currently no way to cancel before messages are sent. default: exit(1); }