aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/http
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-11-30 13:18:10 -0800
committerGravatar Mark D. Roth <roth@google.com>2016-11-30 13:18:10 -0800
commitf1926c048ada37371f66c547f5219a164c2a0060 (patch)
treee65a73bb57f0f73b9eabe8c0d06b609b1d7728e5 /src/core/lib/http
parente6e1c9e7a1d5c57121822c77cee36c441fc315ba (diff)
Add a TODO comment.
Diffstat (limited to 'src/core/lib/http')
-rw-r--r--src/core/lib/http/httpcli_security_connector.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/lib/http/httpcli_security_connector.c b/src/core/lib/http/httpcli_security_connector.c
index 229021a345..82593d33a8 100644
--- a/src/core/lib/http/httpcli_security_connector.c
+++ b/src/core/lib/http/httpcli_security_connector.c
@@ -52,7 +52,10 @@ typedef struct {
} grpc_httpcli_ssl_channel_security_connector;
static void httpcli_ssl_destroy(grpc_security_connector *sc) {
- grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT; // FIXME
+ // TODO(roth, ctiller): Once https://github.com/grpc/grpc/pull/8705 is
+ // merged, change this to use the passed-in exec_ctx instead of creating
+ // its own.
+ grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
grpc_httpcli_ssl_channel_security_connector *c =
(grpc_httpcli_ssl_channel_security_connector *)sc;
if (c->handshaker_factory != NULL) {