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
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ TIPS_INGRESS_METRICS_ADDR=0.0.0.0:9002
TIPS_INGRESS_BLOCK_TIME_MILLISECONDS=2000
TIPS_INGRESS_METER_BUNDLE_TIMEOUT_MS=2000
TIPS_INGRESS_MAX_BUFFERED_METER_BUNDLE_RESPONSES=100
TIPS_INGRESS_BUILDER_RPCS=http://localhost:2222
TIPS_INGRESS_BUILDER_RPCS=http://localhost:2222,http://localhost:2222,http://localhost:2222

# Audit service configuration
TIPS_AUDIT_KAFKA_PROPERTIES_FILE=/app/docker/audit-kafka-properties
Expand Down
2 changes: 1 addition & 1 deletion crates/ingress-rpc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ pub struct Config {
pub meter_bundle_timeout_ms: u64,

/// URLs of the builder RPC service for setting metering information
#[arg(long, env = "TIPS_INGRESS_BUILDER_RPCS")]
#[arg(long, env = "TIPS_INGRESS_BUILDER_RPCS", value_delimiter = ',')]
pub builder_rpcs: Vec<Url>,

/// Maximum number of `MeterBundleResponse`s to buffer in memory
Expand Down
Loading