-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Make NettyDockerCmdExecFactory has compatibility both Linux and OSX automatically #862
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #862 +/- ##
==========================================
- Coverage 71.9% 71.77% -0.13%
==========================================
Files 306 306
Lines 6858 6869 +11
Branches 509 511 +2
==========================================
- Hits 4931 4930 -1
- Misses 1634 1644 +10
- Partials 293 295 +2
Continue to review full report at Codecov.
|
cb51433
to
b0428cf
Compare
pom.xml
Outdated
<artifactId>netty-transport-native-kqueue</artifactId> | ||
<version>${netty.version}</version> | ||
<classifier>osx-x86_64</classifier> | ||
<exclusions> |
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.
Why is this exclusion?
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.
Oh, I will remove this exclusion later
For discussion: As netty/netty#6837 wont be fixed by the netty team this PR will work with MacOS Sierra+ only. Not sure if this is a blocker as the JAXRS implementation doesn't have this limitation. |
@xuchenCN please squash commits |
821b8c9
to
7e1532f
Compare
Hi @KostyaSha sorry for late, already squashed commits. Thx |
Make NettyDockerCmdExecFactory has compatibility both Linux and OSX automatically
This PR make compatibility both Linux and OSX and automatically setting the EventLoopGroup (EpollEventLoopGroup or KQueueEventLoopGroup) .
Due to netty/netty#6837 this PR only work on OSX 10.12
Inspired by @marcuslinke 's branch netty-native-kqueue and we discussion #859 .
This change is