Skip to content

Commit 4c89f5c

Browse files
authored
Automated PR for router-bridge release: [email protected]+v2.6.2 (#435)
mark fields as pub
1 parent c3a3107 commit 4c89f5c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

federation-2/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

federation-2/router-bridge/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "router-bridge"
3-
version = "0.5.12+v2.6.2"
3+
version = "0.5.13+v2.6.2"
44
authors = ["Apollo <[email protected]>"]
55
edition = "2018"
66
description = "JavaScript bridge for the Apollo Router"

federation-2/router-bridge/src/planner.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ pub struct IncrementalDeliverySupport {
705705
pub struct QueryPlannerDebugConfig {
706706
/// If used and the supergraph is built from a single subgraph, then user queries do not go through the
707707
/// normal query planning and instead a fetch to the one subgraph is built directly from the input query.
708-
bypass_planner_for_single_subgraph: Option<bool>,
708+
pub bypass_planner_for_single_subgraph: Option<bool>,
709709

710710
/// Query planning is an exploratory process. Depending on the specificities and feature used by
711711
/// subgraphs, there could exist may different theoretical valid (if not always efficient) plans
@@ -723,7 +723,7 @@ pub struct QueryPlannerDebugConfig {
723723
/// debug a specific issue (with unexpectedly slow query planning for instance). Remember that
724724
/// setting this value too low can negatively affect query runtime (due to the use of sub-optimal
725725
/// query plans).
726-
max_evaluated_plans: Option<u32>,
726+
pub max_evaluated_plans: Option<u32>,
727727

728728
/// Before creating query plans, for each path of fields in the query we compute all the
729729
/// possible options to traverse that path via the subgraphs. Multiple options can arise because
@@ -737,7 +737,7 @@ pub struct QueryPlannerDebugConfig {
737737
/// path's options exceeds this limit, query planning will abort and the operation will fail.
738738
///
739739
/// The default value is None, which specifies no limit.
740-
paths_limit: Option<u32>,
740+
pub paths_limit: Option<u32>,
741741
}
742742
#[cfg(test)]
743743
mod tests {

0 commit comments

Comments
 (0)