Skip to content

Commit 2a7e914

Browse files
committed
Update
1 parent cd15aa5 commit 2a7e914

File tree

4 files changed

+16
-18
lines changed

4 files changed

+16
-18
lines changed

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@ lto = true
2626
codegen-units = 1
2727

2828
[workspace.dependencies]
29-
graphql-parser = { version = "0.5.0", package = "graphql-parser-hive-fork" }
30-
graphql-tools = { version = "0.4.0", features = [
31-
"graphql_parser_fork",
32-
], default-features = false }
29+
graphql-tools = "0.4.0"
30+
graphql-parser = "0.4.1"
3331
serde = { version = "1.0.219", features = ["derive"] }
3432
serde_json = "1.0.142"
3533
sonic-rs = "0.5.3"

bin/router/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ path = "src/main.rs"
1919
hive-router-query-planner = { path = "../../lib/query-planner", version = "2.0.2" }
2020
hive-router-plan-executor = { path = "../../lib/executor", version = "6.0.0" }
2121
hive-router-config = { path = "../../lib/router-config", version = "0.0.10" }
22-
hive-console-sdk = "0.0.0"
22+
hive-console-sdk = "0.1.0"
2323

2424
tokio = { workspace = true }
2525
futures = { workspace = true }

bin/router/src/pipeline/usage_reporting.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ pub fn create_hive_user_agent(usage_config: &UsageReportingConfig) -> UsageAgent
2323
usage_config.endpoint.clone(),
2424
usage_config.target_id.clone(),
2525
usage_config.buffer_size,
26-
usage_config.connect_timeout.as_secs(),
27-
usage_config.request_timeout.as_secs(),
26+
usage_config.connect_timeout,
27+
usage_config.request_timeout,
2828
usage_config.accept_invalid_certs,
2929
usage_config.flush_interval,
3030
user_agent,

0 commit comments

Comments
 (0)