Skip to content

Commit

Permalink
Minor: removing logging on jdbcURL (#18885)
Browse files Browse the repository at this point in the history
  • Loading branch information
harshach authored Dec 3, 2024
1 parent 0372f5a commit d783316
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,6 @@ private void deployPipeline(
PipelineServiceClientInterface pipelineServiceClient,
List<List<String>> pipelineStatuses) {
try {
// TODO: IS THIS OK?
LOG.debug(String.format("deploying pipeline %s", pipeline.getName()));
pipeline.setOpenMetadataServerConnection(
new OpenMetadataConnectionBuilder(config, pipeline).build());
Expand Down Expand Up @@ -617,9 +616,7 @@ private void parseConfig() throws Exception {
String jdbcUrl = dataSourceFactory.getUrl();
String user = dataSourceFactory.getUser();
String password = dataSourceFactory.getPassword();
LOG.info("JDBC URL: {}", jdbcUrl);
assert user != null && password != null;

String flywayRootPath = config.getMigrationConfiguration().getFlywayPath();
String location =
"filesystem:"
Expand Down

0 comments on commit d783316

Please sign in to comment.