Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ impl DatabaseDebug for DatabaseCrdbNats {
8 AS event_type,
1 AS version,
NULL as create_ts,
NULL AS name,
event_name AS name,
NULL AS auxiliary_id,
NULL AS auxiliary_id2,
NULL AS input,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ WHERE NOT forgotten;
CREATE TABLE workflow_removed_events (
location BLOB PRIMARY KEY, -- JSONB
event_type INT NOT NULL, -- event::EventType
event_name TEXT NOT NULL,
event_name TEXT,
create_ts INT NOT NULL,
loop_location BLOB, -- JSONB
forgotten INT NOT NULL DEFAULT false -- BOOLEAN
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@ pub fn configure(config: &rivet_config::Config) -> GlobalResult<String> {
"http://127.0.0.1:{TUNNEL_PROMETHEUS_PORT}",
))?,
}),

foundationdb: Some(FoundationDb {
addresses: Addresses::Dynamic {
fetch_endpoint: Url::parse(&format!("http://127.0.0.1:{TUNNEL_API_EDGE_PORT}/provision/datacenters/___DATACENTER_ID___/servers?pools=fdb"))?,
},
..Default::default()
}),
vector_http: Some(VectorHttp::default()),
nats: Nats {
addresses: Addresses::Dynamic {
fetch_endpoint: Url::parse(&format!("http://127.0.0.1:{TUNNEL_API_EDGE_PORT}/provision/datacenters/___DATACENTER_ID___/servers?pools=nats"))?,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@ pub fn configure(config: &rivet_config::Config) -> GlobalResult<String> {
"http://127.0.0.1:{TUNNEL_PROMETHEUS_PORT}",
))?,
}),

foundationdb: Some(FoundationDb {
addresses: Addresses::Dynamic {
fetch_endpoint: Url::parse(&format!("http://127.0.0.1:{TUNNEL_API_EDGE_PORT}/provision/datacenters/___DATACENTER_ID___/servers?pools=fdb"))?,
},
..Default::default()
}),
vector_http: Some(VectorHttp::default()),
nats: Nats {
addresses: Addresses::Dynamic {
fetch_endpoint: Url::parse(&format!("http://127.0.0.1:{TUNNEL_API_EDGE_PORT}/provision/datacenters/___DATACENTER_ID___/servers?pools=nats"))?,
Expand Down
Loading