-
Notifications
You must be signed in to change notification settings - Fork 218
Removing events from context #596
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
Merged
Merged
Changes from 39 commits
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
898e2c2
WIP
csviri be4e5cf
Addressing Custom Resource by Name and Namespace refactor + Informer …
csviri b2ab4b9
Build is fixed, (test failing)
csviri 9145b52
Test fixes
csviri 4ef27bf
Merge branch 'master' into informer-creventsource
csviri 34cc2a1
minor update
csviri 4b15974
EventSourceManager small fix
csviri 77033e6
Merge branch 'access-event-source-manager' into informer-creventsource
csviri e1b5926
Unit tests fixed
csviri e7d1b99
fix: DefaultEventHandler init from EventSourceManager
csviri a1f92c6
fix: custom resource selector test improvement
csviri e928a3e
fix: wip test imrpovements
csviri f35a340
fix: test improvements
csviri 5d5817e
fix: further improvements
csviri 544ce35
Merge branch 'v2' into informer-creventsource
csviri 75ad7d2
fix: build
csviri 7012fb3
feature: add mvn jar to gitignore
csviri 3746122
Exposing CustomResourceEventSource and informers
csviri f0f2e91
fix: cleanup
csviri 6638a48
fix: remove caching optimization since it not possible anymore with i…
csviri 1d786ef
fix: formatting
csviri a5343b7
refactor: make name/namespace final
metacosm 9e0430a
feature: Simple label selector support
csviri 7f48b9a
Merge branch 'informer-creventsource' of github.com:java-operator-sdk…
csviri 0aa29a1
fix: formatting
csviri 3ad2fc5
fix: code inspection reports
csviri 86b8185
Merge branch 'v2' into informer-creventsource
csviri 92d3ed3
fix: merge from v2
csviri d194d25
fix: removed most deprecated apis
csviri 7ee0b7d
wip: started to remove events from variouse layers
csviri 150e875
fix: progress with implementation and tests
csviri a03cfb9
fix: Updated informer mapping to CustomResourceID
csviri 6b1d7fe
Merge branch 'informer-creventsource' into removing-events-from-context
csviri f97ced5
fix: imports
csviri 109b7bc
fix: decorational changes
csviri 874c25e
fix: event marker unit test
csviri ff2b32a
Default Event Handler Unit tests
csviri 1b66865
Merge branch 'v2' into removing-events-from-context
csviri b6c87f0
fix: fixes after merge
csviri af50089
fix: changes from code review
csviri 58c3f5c
fix: method naming
csviri 6635b54
Update operator-framework-core/src/main/java/io/javaoperatorsdk/opera…
csviri f40ee4e
Update operator-framework-core/src/main/java/io/javaoperatorsdk/opera…
csviri 73c32a8
fix: comment
csviri a8a1ea6
Merge branch 'v2' into removing-events-from-context
csviri e75cad4
fix: fixes from merge
csviri b9fc1fc
fix: remove not used method
csviri 0d409ee
fix: formatting
csviri File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 0 additions & 45 deletions
45
...ator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/EventBuffer.java
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Shouldn't this be a method on
EventMarker
?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.
Did not want to put it there, since Event marker should not know that there is special
CustomResourceEvent
. Will renamet his method so it's more descriptive.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.
Ah yes, good point!