fix(metadata-service): add PE processor to component scan (#10462)

This commit is contained in:
Davi Arnaut 2024-05-08 20:48:13 -05:00 committed by GitHub
parent 21e3f5416c
commit 7adf72652b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,6 +14,8 @@ import org.springframework.context.annotation.PropertySource;
@ComponentScan( @ComponentScan(
basePackages = { basePackages = {
"com.linkedin.metadata.boot", "com.linkedin.metadata.boot",
"com.linkedin.metadata.service",
"com.datahub.event",
"com.linkedin.gms.factory.config", "com.linkedin.gms.factory.config",
"com.linkedin.gms.factory.entityregistry", "com.linkedin.gms.factory.entityregistry",
"com.linkedin.gms.factory.common", "com.linkedin.gms.factory.common",
@ -34,7 +36,7 @@ import org.springframework.context.annotation.PropertySource;
"com.linkedin.gms.factory.auth", "com.linkedin.gms.factory.auth",
"com.linkedin.gms.factory.search", "com.linkedin.gms.factory.search",
"com.linkedin.gms.factory.secret", "com.linkedin.gms.factory.secret",
"com.linkedin.gms.factory.timeseries" "com.linkedin.gms.factory.timeseries",
}) })
@PropertySource(value = "classpath:/application.yaml", factory = YamlPropertySourceFactory.class) @PropertySource(value = "classpath:/application.yaml", factory = YamlPropertySourceFactory.class)
@Configuration @Configuration