replace with opensearch-http-channel and opensearch-http-server-channel (#1799)

Signed-off-by: Shinsuke Sugaya <shinsuke@apache.org>
This commit is contained in:
Shinsuke Sugaya 2021-12-30 02:32:49 +09:00 committed by GitHub
parent abe4b97199
commit d843ddd9c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -314,8 +314,8 @@ public class Netty4HttpServerTransport extends AbstractHttpServerTransport {
return new HttpChannelHandler(this, handlingSettings);
}
static final AttributeKey<Netty4HttpChannel> HTTP_CHANNEL_KEY = AttributeKey.newInstance("es-http-channel");
static final AttributeKey<Netty4HttpServerChannel> HTTP_SERVER_CHANNEL_KEY = AttributeKey.newInstance("es-http-server-channel");
static final AttributeKey<Netty4HttpChannel> HTTP_CHANNEL_KEY = AttributeKey.newInstance("opensearch-http-channel");
static final AttributeKey<Netty4HttpServerChannel> HTTP_SERVER_CHANNEL_KEY = AttributeKey.newInstance("opensearch-http-server-channel");
protected static class HttpChannelHandler extends ChannelInitializer<Channel> {