-
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
Upgrade JDBC and Atlas connectors #7827
Conversation
Signed-off-by: Mandy Chessell <mandy.e.chessell@gmail.com>
*/ | ||
@Override | ||
public void initializeEmbeddedConnectors(List<Connector> embeddedConnectors) | ||
public void start() throws ConnectorCheckedException |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
ConnectorBase.start
This method overrides
IntegrationConnector.start
*/ | ||
@Override | ||
public void initializeEmbeddedConnectors(List<Connector> embeddedConnectors) | ||
public void start() throws ConnectorCheckedException |
Check warning
Code scanning / CodeQL
Non-synchronized override of synchronized method Warning
org.odpi.openmetadata.frameworks.connectors.ConnectorBase
|
||
if (connectionTimeoutOption != null) | ||
{ | ||
int connectionTimeout = Integer.parseInt(connectionTimeoutOption.toString()); |
Check notice
Code scanning / CodeQL
Missing catch of NumberFormatException Note
* PropertyServerException there is a problem accessing the metadata store | ||
*/ | ||
public RelatedMetadataElementsResponse getRelationshipByGUID(String serverName, | ||
String serviceURLMarker, |
Check notice
Code scanning / CodeQL
Useless parameter Note
String serviceURLMarker, | ||
String userId, | ||
String relationshipGUID, | ||
boolean forLineage, |
Check notice
Code scanning / CodeQL
Useless parameter Note
String userId, | ||
String relationshipGUID, | ||
boolean forLineage, | ||
boolean forDuplicateProcessing, |
Check notice
Code scanning / CodeQL
Useless parameter Note
Description
This fix includes:
Related Issue(s)
None
Testing
Tested using the labs and also build an integration connector to load metadata from Egeria into a relational database.
Release Notes & Documentation
These updates have already been added to the docs site.
Additional notes
None