Skip to content

Commit 121e08c

Browse files
committed
fix(instropection): fix configuration application order (#10579)
1 parent 94af249 commit 121e08c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/GmsGraphQLEngine.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -830,10 +830,10 @@ public GraphQLEngine.Builder builder() {
830830
builder
831831
.addDataLoaders(loaderSuppliers(loadableTypes))
832832
.addDataLoader("Aspect", context -> createDataLoader(aspectType, context))
833-
.configureRuntimeWiring(this::configureRuntimeWiring)
834833
.setGraphQLQueryComplexityLimit(graphQLQueryComplexityLimit)
835834
.setGraphQLQueryDepthLimit(graphQLQueryDepthLimit)
836-
.setGraphQLQueryIntrospectionEnabled(graphQLQueryIntrospectionEnabled);
835+
.setGraphQLQueryIntrospectionEnabled(graphQLQueryIntrospectionEnabled)
836+
.configureRuntimeWiring(this::configureRuntimeWiring);
837837
return builder;
838838
}
839839

0 commit comments

Comments
 (0)