aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/fling/server.c
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2015-06-18 08:42:29 -0700
committerGravatar Vijay Pai <vpai@google.com>2015-06-18 08:42:29 -0700
commitd03adc340ae04df7ba6635192fdd3bfa9a3c607f (patch)
treed13cd0303fcb3b9b453e40d57412d7751410dfc3 /test/core/fling/server.c
parentd2a82d9da7dbe2759d7bdd400cc835229e904c07 (diff)
parent6174b9a4d092c145d6cd3c90ab59bf5a0939329e (diff)
Merge remote-tracking branch 'ctiller-repo/we-dont-need-no-backup' into poller2
Diffstat (limited to 'test/core/fling/server.c')
-rw-r--r--test/core/fling/server.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/core/fling/server.c b/test/core/fling/server.c
index e58d721c86..9542e15ad0 100644
--- a/test/core/fling/server.c
+++ b/test/core/fling/server.c
@@ -234,7 +234,9 @@ int main(int argc, char **argv) {
if (got_sigint && !shutdown_started) {
gpr_log(GPR_INFO, "Shutting down due to SIGINT");
grpc_server_shutdown_and_notify(server, cq, tag(1000));
- GPR_ASSERT(grpc_completion_queue_pluck(cq, tag(1000), GRPC_TIMEOUT_SECONDS_TO_DEADLINE(5)).type == GRPC_OP_COMPLETE);
+ GPR_ASSERT(grpc_completion_queue_pluck(
+ cq, tag(1000), GRPC_TIMEOUT_SECONDS_TO_DEADLINE(5))
+ .type == GRPC_OP_COMPLETE);
grpc_completion_queue_shutdown(cq);
shutdown_started = 1;
}