aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/ext/server.cc
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-07-13 09:16:03 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-07-13 09:16:03 -0700
commit354398f9f5191bb44198b94e1828eafb60de5a67 (patch)
tree716e16fa3c813b5b02344eba8e341c27fd40840c /src/node/ext/server.cc
parent75cfb044f3c5582a50582c375b443ee4ab029c33 (diff)
Updating wrapped languages to new time functions
Diffstat (limited to 'src/node/ext/server.cc')
-rw-r--r--src/node/ext/server.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/node/ext/server.cc b/src/node/ext/server.cc
index 51c55ba965..34cde9ffab 100644
--- a/src/node/ext/server.cc
+++ b/src/node/ext/server.cc
@@ -161,7 +161,8 @@ void Server::ShutdownServer() {
grpc_server_shutdown_and_notify(this->wrapped_server,
this->shutdown_queue,
NULL);
- grpc_completion_queue_pluck(this->shutdown_queue, NULL, gpr_inf_future);
+ grpc_completion_queue_pluck(this->shutdown_queue, NULL,
+ gpr_inf_future(GPR_CLOCK_REALTIME));
this->wrapped_server = NULL;
}
}