-
Notifications
You must be signed in to change notification settings - Fork 261
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
OMAG server code stucture, actuator support and initial unit tests #7782
OMAG server code stucture, actuator support and initial unit tests #7782
Conversation
Sonatype Lift is retiringSonatype Lift will be retiring on Sep 12, 2023, with its analysis stopping on Aug 12, 2023. We understand that this news may come as a disappointment, and Sonatype is committed to helping you transition off it seamlessly. If you’d like to retain your data, please export your issues from the web console. |
...mplementation/server-chassis/server-chassis-spring/src/main/resources/application.properties
Outdated
Show resolved
Hide resolved
...ver-chassis/server-chassis-spring/src/main/java/org/odpi/openmetadata/server/OMAGServer.java
Outdated
Show resolved
Hide resolved
...g/src/main/java/org/odpi/openmetadata/server/config/AvailabilityProbesAutoConfiguration.java
Outdated
Show resolved
Hide resolved
...mplementation/server-chassis/server-chassis-spring/src/main/resources/application.properties
Outdated
Show resolved
Hide resolved
...mplementation/server-chassis/server-chassis-spring/src/main/resources/application.properties
Show resolved
Hide resolved
...hassis-spring/src/test/java/org/odpi/openmetadata/server/actuator/ActuatorEndpointsTest.java
Outdated
Show resolved
Hide resolved
c7c3ed8
to
2a3c489
Compare
Signed-off-by: tijanapavicic <[email protected]>
Signed-off-by: tijanapavicic <[email protected]>
Signed-off-by: tijanapavicic <[email protected]>
Signed-off-by: tijanapavicic <[email protected]>
Signed-off-by: tijanapavicic <[email protected]>
2a3c489
to
7447ebc
Compare
} catch (IOException e) { | ||
LOG.error("Exception while loading OMAG server configuration", e); | ||
LOG.error("Failed loading OMAG server configuration with exception message : {}", e.getMessage()); |
Check warning
Code scanning / CodeQL
Unused format argument
//TODO: Confirm if this is desired behaviour (configuration is null) | ||
// Same as in the case above. | ||
throw new ApplicationContextException("Exception loading OMAG server configuration"); | ||
throw new ApplicationContextException( | ||
String.format("Failed loading OMAG server configuration with exception message : {}", e.getMessage())); |
Check warning
Code scanning / CodeQL
Unused format argument
Initial setup with whitelisting health actuator endpoints, and basic unit test coverage for OMAGServer class.
Related Issue(s)
Testing
Release Notes & Documentation
Additional notes