Skip to content

Commit e1a8dda

Browse files
committed
fix: add vector http config to edge configs
1 parent 7a2a9b2 commit e1a8dda

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/common/chirp-workflow/core/src/db/crdb_nats/debug.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ impl DatabaseDebug for DatabaseCrdbNats {
404404
8 AS event_type,
405405
1 AS version,
406406
NULL as create_ts,
407-
NULL AS name,
407+
event_name AS name,
408408
NULL AS auxiliary_id,
409409
NULL AS auxiliary_id2,
410410
NULL AS input,

packages/common/chirp-workflow/core/src/db/fdb_sqlite_nats/sqlite/migrations/20250122212060_init.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ WHERE NOT forgotten;
176176
CREATE TABLE workflow_removed_events (
177177
location BLOB PRIMARY KEY, -- JSONB
178178
event_type INT NOT NULL, -- event::EventType
179-
event_name TEXT NOT NULL,
179+
event_name TEXT,
180180
create_ts INT NOT NULL,
181181
loop_location BLOB, -- JSONB
182182
forgotten INT NOT NULL DEFAULT false -- BOOLEAN

packages/core/services/cluster/src/workflows/server/install/install_scripts/components/rivet/guard.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ pub fn configure(config: &rivet_config::Config) -> GlobalResult<String> {
102102
"http://127.0.0.1:{TUNNEL_PROMETHEUS_PORT}",
103103
))?,
104104
}),
105-
106105
foundationdb: Some(FoundationDb {
107106
addresses: Addresses::Dynamic {
108107
fetch_endpoint: Url::parse(&format!("http://127.0.0.1:{TUNNEL_API_EDGE_PORT}/provision/datacenters/___DATACENTER_ID___/servers?pools=fdb"))?,
109108
},
110109
..Default::default()
111110
}),
111+
vector_http: Some(VectorHttp::default()),
112112
nats: Nats {
113113
addresses: Addresses::Dynamic {
114114
fetch_endpoint: Url::parse(&format!("http://127.0.0.1:{TUNNEL_API_EDGE_PORT}/provision/datacenters/___DATACENTER_ID___/servers?pools=nats"))?,

packages/core/services/cluster/src/workflows/server/install/install_scripts/components/rivet/worker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,13 @@ pub fn configure(config: &rivet_config::Config) -> GlobalResult<String> {
115115
"http://127.0.0.1:{TUNNEL_PROMETHEUS_PORT}",
116116
))?,
117117
}),
118-
119118
foundationdb: Some(FoundationDb {
120119
addresses: Addresses::Dynamic {
121120
fetch_endpoint: Url::parse(&format!("http://127.0.0.1:{TUNNEL_API_EDGE_PORT}/provision/datacenters/___DATACENTER_ID___/servers?pools=fdb"))?,
122121
},
123122
..Default::default()
124123
}),
124+
vector_http: Some(VectorHttp::default()),
125125
nats: Nats {
126126
addresses: Addresses::Dynamic {
127127
fetch_endpoint: Url::parse(&format!("http://127.0.0.1:{TUNNEL_API_EDGE_PORT}/provision/datacenters/___DATACENTER_ID___/servers?pools=nats"))?,

0 commit comments

Comments
 (0)