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 {
404
404
8 AS event_type,
405
405
1 AS version,
406
406
NULL as create_ts,
407
- NULL AS name,
407
+ event_name AS name,
408
408
NULL AS auxiliary_id,
409
409
NULL AS auxiliary_id2,
410
410
NULL AS input,
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ WHERE NOT forgotten;
176
176
CREATE TABLE workflow_removed_events (
177
177
location BLOB PRIMARY KEY , -- JSONB
178
178
event_type INT NOT NULL , -- event::EventType
179
- event_name TEXT NOT NULL ,
179
+ event_name TEXT ,
180
180
create_ts INT NOT NULL ,
181
181
loop_location BLOB, -- JSONB
182
182
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> {
102
102
"http://127.0.0.1:{TUNNEL_PROMETHEUS_PORT}" ,
103
103
) ) ?,
104
104
} ) ,
105
-
106
105
foundationdb : Some ( FoundationDb {
107
106
addresses : Addresses :: Dynamic {
108
107
fetch_endpoint : Url :: parse ( & format ! ( "http://127.0.0.1:{TUNNEL_API_EDGE_PORT}/provision/datacenters/___DATACENTER_ID___/servers?pools=fdb" ) ) ?,
109
108
} ,
110
109
..Default :: default ( )
111
110
} ) ,
111
+ vector_http : Some ( VectorHttp :: default ( ) ) ,
112
112
nats : Nats {
113
113
addresses : Addresses :: Dynamic {
114
114
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> {
115
115
"http://127.0.0.1:{TUNNEL_PROMETHEUS_PORT}" ,
116
116
) ) ?,
117
117
} ) ,
118
-
119
118
foundationdb : Some ( FoundationDb {
120
119
addresses : Addresses :: Dynamic {
121
120
fetch_endpoint : Url :: parse ( & format ! ( "http://127.0.0.1:{TUNNEL_API_EDGE_PORT}/provision/datacenters/___DATACENTER_ID___/servers?pools=fdb" ) ) ?,
122
121
} ,
123
122
..Default :: default ( )
124
123
} ) ,
124
+ vector_http : Some ( VectorHttp :: default ( ) ) ,
125
125
nats : Nats {
126
126
addresses : Addresses :: Dynamic {
127
127
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