Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kofoworola committed Mar 21, 2024
1 parent c9898fd commit 09135df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .task/checksum/docker
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8323a868340af0f11a19b2d23a9920fe
4 changes: 2 additions & 2 deletions apidef/adapter/graphql_config_adapter.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func (g *GraphQLConfigAdapter) createV2ConfigForProxyOnlyExecutionMode() (*graph
graphql.WithProxySubscriptionClientFactory(g.subscriptionClientFactory),
).EngineV2Configuration()

v2Config.EnableSingleFlight(true)
v2Config.EnableSingleFlight(false)
return &v2Config, err
}

Expand Down Expand Up @@ -164,7 +164,7 @@ func (g *GraphQLConfigAdapter) createV2ConfigForEngineExecutionMode() (*graphql.
}

conf := graphql.NewEngineV2Configuration(g.schema)
conf.EnableSingleFlight(true)
conf.EnableSingleFlight(false)

fieldConfigs := g.engineConfigV2FieldConfigs()
datsSources, err := g.engineConfigV2DataSources()
Expand Down

0 comments on commit 09135df

Please sign in to comment.