fix(gms): bean not found (#13183)

This commit is contained in:
Deepak Garg 2025-04-11 19:30:25 +05:30 committed by GitHub
parent b9e5d213b2
commit ac9f3ca8ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,7 +12,7 @@ import com.linkedin.common.urn.UrnUtils;
import com.linkedin.metadata.aspect.models.graph.Edge;
import com.linkedin.metadata.aspect.models.graph.RelatedEntities;
import com.linkedin.metadata.aspect.models.graph.RelatedEntitiesScrollResult;
import com.linkedin.metadata.graph.elastic.ElasticSearchGraphService;
import com.linkedin.metadata.graph.GraphService;
import com.linkedin.metadata.models.registry.EntityRegistry;
import com.linkedin.metadata.query.filter.RelationshipDirection;
import com.linkedin.metadata.query.filter.RelationshipFilter;
@ -37,7 +37,7 @@ import org.springframework.web.bind.annotation.*;
public abstract class GenericRelationshipController {
@Autowired private EntityRegistry entityRegistry;
@Autowired private ElasticSearchGraphService graphService;
@Autowired private GraphService graphService;
@Autowired private AuthorizerChain authorizationChain;
@Qualifier("systemOperationContext")