Skip to content

Commit f322373

Browse files
authored
Merge branch 'main' into feat/gtm-integration
2 parents a02b7d8 + 14ecda1 commit f322373

File tree

30 files changed

+2344
-154
lines changed

30 files changed

+2344
-154
lines changed

.env.dev

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@ TRUSTED_SERVER__PUBLISHER__ORIGIN_URL=http://localhost:9090
44
# [synthetic]
55
TRUSTED_SERVER__SYNTHETIC__COUNTER_STORE=counter_store
66
TRUSTED_SERVER__SYNTHETIC__OPID_STORE=opid_store
7+
8+
# [proxy]
9+
# Disable TLS certificate verification for local dev with self-signed certs
10+
# TRUSTED_SERVER__PROXY__CERTIFICATE_CHECK=false

.github/workflows/format.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
pull_request:
77
branches: [main]
88

9+
permissions:
10+
contents: read
11+
912
jobs:
1013
format-rust:
1114
name: cargo fmt

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: "Run Tests"
22

3+
permissions:
4+
contents: read
5+
36
on:
47
push:
58
branches: [main]

crates/common/src/auction/provider.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ pub trait AuctionProvider: Send + Sync {
6262
///
6363
/// This is used by the orchestrator to correlate responses with providers
6464
/// when using `select()` to wait for multiple concurrent requests.
65-
/// The backend name should match what `ensure_backend_from_url()` returns
65+
/// The backend name should match what `BackendConfig::from_url()` returns
6666
/// for this provider's endpoint.
6767
fn backend_name(&self) -> Option<String> {
6868
None

0 commit comments

Comments
 (0)