File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
common/chirp-workflow/core/src/db
fdb_sqlite_nats/sqlite/migrations
core/services/cluster/src/workflows/server/install/install_scripts/components/rivet Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff 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,
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ WHERE NOT forgotten;
176176CREATE 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
Original file line number Diff line number Diff 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" ) ) ?,
Original file line number Diff line number Diff 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" ) ) ?,
You can’t perform that action at this time.
0 commit comments