Skip to content

Commit bfb13f8

Browse files
shashitnakMiaxos
authored andcommitted
updating reqwest to use rustls
1 parent 802c818 commit bfb13f8

File tree

3 files changed

+40
-41
lines changed

3 files changed

+40
-41
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ futures = "0.3"
2727
futures-locks = "0.7"
2828
prost = "0.12"
2929
prost-types = "0.12"
30-
reqwest = { version = "0.11", default-features = false, features = ["json"] }
30+
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
3131
serde_json = "1"
3232
serde = { version = "1", features = ["derive"] }
3333
sha2 = "0.10"

proto/reports.proto

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -286,11 +286,11 @@ message Trace {
286286
double field_execution_weight = 31;
287287

288288

289-
290289
// removed: Node parse = 12; Node validate = 13;
291290
// Id128 server_id = 1; Id128 client_id = 2;
292291
// String client_reference_id = 23; String client_address = 9;
293-
reserved 1, 2, 9, 12, 13, 23;
292+
// 29 and 30 were internal fields.
293+
reserved 1, 2, 9, 12, 13, 23, 29, 30;
294294
}
295295

296296
// The `service` value embedded within the header key is not guaranteed to contain an actual service,
@@ -439,8 +439,6 @@ message ReferencedFieldsForType {
439439
bool is_interface = 2;
440440
}
441441

442-
443-
444442
// This is the top-level message used by Apollo Server, Apollo Router, and other libraries to report usage information
445443
// to Apollo. This message consists of traces and stats for operations. By default, each individual operation execution
446444
// should be either represented as a trace or within stats, but not both. However if the "traces_pre_aggregated" field
@@ -493,6 +491,7 @@ message ContextualizedStats {
493491
// field executions and thus only reflects operations for which field-level tracing occurred.
494492
map<string, TypeStat> per_type_stat = 3;
495493

494+
reserved 4, 5;
496495
}
497496

498497
message QueryMetadata {

0 commit comments

Comments
 (0)