Update doc

This commit is contained in:
Tatsuhiro Tsujikawa 2015-09-12 18:33:07 +09:00
parent 4ae2850aa6
commit 57aee184ca
2 changed files with 2 additions and 0 deletions

View File

@ -1309,6 +1309,7 @@ int Http2Upstream::on_downstream_header_complete(Downstream *downstream) {
if (error_reply(downstream, 500) != 0) {
return -1;
}
// Returning -1 will signal deletion of dconn.
return -1;
}

View File

@ -952,6 +952,7 @@ int SpdyUpstream::on_downstream_header_complete(Downstream *downstream) {
if (error_reply(downstream, 500) != 0) {
return -1;
}
// Returning -1 will signal deletion of dconn.
return -1;
}