Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .env.dev
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ TRUSTED_SERVER__PUBLISHER__ORIGIN_URL=http://localhost:9090
# [synthetic]
TRUSTED_SERVER__SYNTHETIC__COUNTER_STORE=counter_store
TRUSTED_SERVER__SYNTHETIC__OPID_STORE=opid_store

# [proxy]
# Disable TLS certificate verification for local dev with self-signed certs
# TRUSTED_SERVER__PROXY__CERTIFICATE_CHECK=false
2 changes: 1 addition & 1 deletion crates/common/src/auction/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ pub trait AuctionProvider: Send + Sync {
///
/// This is used by the orchestrator to correlate responses with providers
/// when using `select()` to wait for multiple concurrent requests.
/// The backend name should match what `ensure_backend_from_url()` returns
/// The backend name should match what `BackendConfig::from_url()` returns
/// for this provider's endpoint.
fn backend_name(&self) -> Option<String> {
None
Expand Down
Loading