-
Notifications
You must be signed in to change notification settings - Fork 306
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
FISH-477 Deployment group properties are now resolved #4850
FISH-477 Deployment group properties are now resolved #4850
Conversation
Jenkins test please |
// so we need to add System Properties in *reverse order* to get the | ||
// right precedence. | ||
|
||
List<SystemProperty> domainSPList = domain.getSystemProperty(); | ||
List<SystemProperty> configSPList = getConfigSystemProperties(); | ||
Cluster cluster = server.getCluster(); | ||
List<SystemProperty> clusterSPList = null; | ||
|
||
List<DeploymentGroup> depGroups = server.getDeploymentGroup(); |
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.
Can this be null?
Having trouble reproducing atm
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.
This cannot be null, but the list may be of length 0.
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.
This cannot be null, but is can be a 0-sized list.
Jenkins test please |
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.
This gets validated twice, once against the DAS config, and once against the target config - meaning you need to have the property set on both configs for it to pick it up. Ideally this should validate it against just the target config.
4d25834
to
745ed3a
Compare
Jenkins test please |
Description
This is a bug fix
Important Info
Blockers
Testing
Testing Performed
Manual tests, see Jira for reproducer
Testing Environment
Zulu JDK 1.8_212 on Ubuntu 20.04 with Maven 3.6.3