1
0

Fix table missing column

This commit is contained in:
Eric Eastwood
2022-08-02 20:09:22 -05:00
parent 2491665ed9
commit 16d17f7553
3 changed files with 7 additions and 3 deletions

View File

@@ -3604,7 +3604,10 @@ tracing:
jaeger_exporter_config:
agent_host_name: localhost
agent_port: 6831
collector_endpoint: "http://localhost:14268/api/traces?format=jaeger.thrift"
# Split UDP packets so they fit within the limit (UDP_PACKET_MAX_LENGTH is set to 65k in OpenTelemetry)
udp_split_oversized_batches: true
# If you define a collector, it will communicate directly to the collector, bypassing the agent
#collector_endpoint: "http://localhost:14268/api/traces?format=jaeger.thrift"
```
---
## Workers ##

View File

@@ -75,8 +75,8 @@ Changes in SCHEMA_VERSION = 71:
Changes in SCHEMA_VERSION = 72:
- event_edges.(room_id, is_state) are no longer written to.
- Tables related to groups are dropped.
- Rename column in `device_lists_outbound_pokes` from `opentracing_context` to
generalized `tracing_context`.
- Rename column in `device_lists_outbound_pokes` and `device_lists_changes_in_room`
from `opentracing_context` to generalized `tracing_context`.
"""

View File

@@ -15,3 +15,4 @@
-- Rename to generalized `tracing_context` since we're moving from opentracing to opentelemetry
ALTER TABLE device_lists_outbound_pokes RENAME COLUMN opentracing_context TO tracing_context;
ALTER TABLE device_lists_changes_in_room RENAME COLUMN opentracing_context TO tracing_context;