Skip to content

Commit

Permalink
Java checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
gyohub committed Feb 11, 2025
1 parent e104c7f commit f5a8118
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,9 @@ public class IngestionPipelineRepository extends EntityRepository<IngestionPipel
private static final String PIPELINE_STATUS_JSON_SCHEMA = "ingestionPipelineStatus";
private static final String PIPELINE_STATUS_EXTENSION = "ingestionPipeline.pipelineStatus";
private static final String RUN_ID_EXTENSION_KEY = "runId";
@Setter
private PipelineServiceClientInterface pipelineServiceClient;
@Setter private PipelineServiceClientInterface pipelineServiceClient;

@Getter
private final OpenMetadataApplicationConfig openMetadataApplicationConfig;
@Getter private final OpenMetadataApplicationConfig openMetadataApplicationConfig;

public IngestionPipelineRepository(OpenMetadataApplicationConfig config) {
super(
Expand Down Expand Up @@ -156,8 +154,11 @@ public void storeEntity(IngestionPipeline ingestionPipeline, boolean update) {
public void storeRelationships(IngestionPipeline ingestionPipeline) {
addServiceRelationship(ingestionPipeline, ingestionPipeline.getService());
addRelationship(
ingestionPipeline.getService().getId(), ingestionPipeline.getId(),
ingestionPipeline.getService().getType(), entityType, Relationship.HAS);
ingestionPipeline.getService().getId(),
ingestionPipeline.getId(),
ingestionPipeline.getService().getType(),
entityType,
Relationship.HAS);
}

@Override
Expand Down

0 comments on commit f5a8118

Please sign in to comment.