Fixed pipeline FQN bug (#7740)

* Fixed pipeline FQN

* fixed messaging service

Co-authored-by: Onkar Ravgan <onkarravgan@Onkars-MacBook-Pro.local>
This commit is contained in:
Onkar Ravgan 2022-09-27 14:23:59 +05:30 committed by GitHub
parent 09855fc4c1
commit dc74089f0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ class MessagingServiceSource(TopologyRunnerMixin, Source, ABC):
self.metadata,
entity_type=Topic,
service_name=self.context.messaging_service.name.__root__,
mlmodel_name=self.get_topic_name(topic_details),
topic_name=self.get_topic_name(topic_details),
)
if filter_by_topic(
self.source_config.topicFilterPattern,

View File

@ -211,7 +211,7 @@ class PipelineServiceSource(TopologyRunnerMixin, Source, ABC):
self.metadata,
entity_type=Pipeline,
service_name=self.context.pipeline_service.name.__root__,
mlmodel_name=self.get_pipeline_name(pipeline_detail),
pipeline_name=self.get_pipeline_name(pipeline_detail),
)
if filter_by_pipeline(
self.source_config.pipelineFilterPattern,