-
Notifications
You must be signed in to change notification settings - Fork 101
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
IGNITE-24014 Introduce a way to have key-value entries in configuration #4997
Conversation
6b77d97
to
4a7dff1
Compare
9a04615
to
f50591b
Compare
@@ -153,12 +156,16 @@ private boolean process0(RoundEnvironment roundEnvironment) { | |||
return false; | |||
} | |||
|
|||
var injectedValueValidator = new InjectedValueValidator(processingEnv); |
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.
Note to reviewer: I'm going to refactor this part in a next PR to extract validators for all annotations, not just this one.
} | ||
} | ||
|
||
private boolean isValidValueAnnotationFieldType(TypeMirror type) { |
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.
Note to reviewer: this copy-paste will be refactored in a next PR
* NodeAttributeConfigurationSchema: attribute -> value * SystemPropertyConfigurationSchema: propertyValue -> value.
f50591b
to
3e80b89
Compare
...pache/ignite/internal/cluster/management/configuration/NodeAttributeConfigurationSchema.java
Show resolved
Hide resolved
...va/org/apache/ignite/internal/configuration/processor/validators/InjectedValueValidator.java
Outdated
Show resolved
Hide resolved
...he/ignite/internal/configuration/utils/SystemDistributedConfigurationPropertyHolderTest.java
Outdated
Show resolved
Hide resolved
...ration/src/main/java/org/apache/ignite/internal/configuration/asm/InnerNodeAsmGenerator.java
Outdated
Show resolved
Hide resolved
...main/java/org/apache/ignite/internal/configuration/hocon/HoconObjectConfigurationSource.java
Outdated
Show resolved
Hide resolved
...ation/src/main/java/org/apache/ignite/internal/configuration/tree/ConverterToMapVisitor.java
Outdated
Show resolved
Hide resolved
.../test/java/org/apache/ignite/internal/distributionzones/BaseDistributionZoneManagerTest.java
Outdated
Show resolved
Hide resolved
.../src/integrationTest/java/org/apache/ignite/internal/runner/app/ItIgniteNodeRestartTest.java
Outdated
Show resolved
Hide resolved
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.
I like it
https://issues.apache.org/jira/browse/IGNITE-24014
Thank you for submitting the pull request.
To streamline the review process of the patch and ensure better code quality
we ask both an author and a reviewer to verify the following:
The Review Checklist
- There is a single JIRA ticket related to the pull request.
- The web-link to the pull request is attached to the JIRA ticket.
- The JIRA ticket has the Patch Available state.
- The description of the JIRA ticket explains WHAT was made, WHY and HOW.
- The pull request title is treated as the final commit message. The following pattern must be used: IGNITE-XXXX Change summary where XXXX - number of JIRA issue.
Notes