-
Notifications
You must be signed in to change notification settings - Fork 10
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
Feature/interlok 4149 jdbc retrystore #1254
Open
jameswickham
wants to merge
10
commits into
develop
Choose a base branch
from
feature/INTERLOK-4149-JDBC-Retrystore
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
…nts so the required classes can access it still now they have been moved to another package.
…ses that implement it. Services have now been split out so no longer need to use the same interface.
…t property removed by mistake.
…oc generation so I've fixed it.
correcting javadocs updating how we handle the service's state
jameswickham
requested review from
aaron-mcgrath-adp,
higgyfella and
sebastien-belin-adp
September 29, 2023 17:14
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## develop #1254 +/- ##
=============================================
- Coverage 93.47% 93.27% -0.20%
- Complexity 10852 10915 +63
=============================================
Files 1054 1058 +4
Lines 29104 29434 +330
Branches 2038 2069 +31
=============================================
+ Hits 27204 27454 +250
- Misses 1484 1534 +50
- Partials 416 446 +30
☔ View full report in Codecov by Sentry. |
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Motivation
To split out the JDBC set of retry services so they are totally seperate from the exisiting services that use the filesystem and s3 retry stores. The reason for this is that while the services are both for "retrying" these JDBC set of services do a lot more that makes them incompatible with the existing services(acknowledgments, expired messages, etc).
Modification
Renamed the classes and moved them to the appropriate packages.
PR Checklist
Result
The services that were named as follows:
StoreMessageForRetryService
RetryMessageService
AcknowledgmentService
Are all now prefixed with 'Jdbc' and you no longer have the option to select a retry store as it is expected to ONLY be a JDBC retry store. Defining the SQL properties file is now in the main service form and not within the retry store.
All functionality remains exactly the same.
However this is a config breaking change due to the restructure and renaming.
Testing