-
Notifications
You must be signed in to change notification settings - Fork 29k
SPARK-1478.2 Fix incorrect NioServerSocketChannelFactory constructor call #1466
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -153,15 +153,15 @@ class FlumeReceiver( | |
|
|
||
| private def initServer() = { | ||
| if (enableDecompression) { | ||
| val channelFactory = new NioServerSocketChannelFactory | ||
| (Executors.newCachedThreadPool(), Executors.newCachedThreadPool()); | ||
| val channelPipelieFactory = new CompressionChannelPipelineFactory() | ||
| val channelFactory = new NioServerSocketChannelFactory(Executors.newCachedThreadPool(), | ||
| Executors.newCachedThreadPool()) | ||
| val channelPipelineFactory = new CompressionChannelPipelineFactory() | ||
|
|
||
| new NettyServer( | ||
| responder, | ||
| new InetSocketAddress(host, port), | ||
| channelFactory, | ||
| channelPipelieFactory, | ||
| channelFactory, | ||
| channelPipelineFactory, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What changed here? Was there a formatting issue?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a typo in the variable name. The other line was just the IDE
|
||
| null) | ||
| } else { | ||
| new NettyServer(responder, new InetSocketAddress(host, port)) | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch on the spelling mistake!