-
Notifications
You must be signed in to change notification settings - Fork 119
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
Gracefully clean up resources on shutdown #334
Gracefully clean up resources on shutdown #334
Conversation
Codecov Report
@@ Coverage Diff @@
## master #334 +/- ##
============================================
- Coverage 76.27% 75.37% -0.91%
- Complexity 189 195 +6
============================================
Files 51 52 +1
Lines 1564 1600 +36
Branches 53 53
============================================
+ Hits 1193 1206 +13
- Misses 291 313 +22
- Partials 80 81 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
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.
/lgtm
I'm fixing another thing. |
8cc4e1f
to
b85d692
Compare
/unhold |
b85d692
to
49288d3
Compare
Signed-off-by: Pierangelo Di Pilato <pierangelodipilato@gmail.com>
49288d3
to
445f82c
Compare
Ready for a review. |
data-plane/receiver/src/main/java/dev/knative/eventing/kafka/broker/receiver/Main.java
Outdated
Show resolved
Hide resolved
d1155e8
to
af5e50b
Compare
Signed-off-by: Pierangelo Di Pilato <pierangelodipilato@gmail.com>
af5e50b
to
95ca75c
Compare
data-plane/dispatcher/src/main/java/dev/knative/eventing/kafka/broker/dispatcher/Main.java
Outdated
Show resolved
Hide resolved
data-plane/receiver/src/main/java/dev/knative/eventing/kafka/broker/receiver/Main.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Pierangelo Di Pilato <pierangelodipilato@gmail.com>
82e56f6
to
bb6373d
Compare
Signed-off-by: Pierangelo Di Pilato <pierangelodipilato@gmail.com>
data-plane/dispatcher/src/main/java/dev/knative/eventing/kafka/broker/dispatcher/Main.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Pierangelo Di Pilato <pierangelodipilato@gmail.com>
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: pierDipi, slinkydeveloper The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
In this patch, I'm removing the requirement to build binaries on the host and then build the image by copying the binary. This improves consistency because the build isn't different based on the environment is built. In addition, this simplifies my openshift/release reconciler. Signed-off-by: Pierangelo Di Pilato <pierdipi@redhat.com>
Proposed Changes