some refinement
Build and Publish / Metadata (push) Has been cancelled
Build and Publish / BuildAndDeployAmd64 (push) Has been cancelled

This commit is contained in:
2026-04-07 12:44:55 +02:00
parent 89e1db8edf
commit 0ed1cb4355
14 changed files with 390 additions and 104 deletions
+2 -2
View File
@@ -21,12 +21,12 @@ func TestFileStore(t *testing.T) {
entry1 := websocket.HistoryEntry{
Type: "logs",
Timestamp: 100,
Data: map[string]interface{}{"msg": "hello world"},
Data: json.RawMessage(`{"msg":"hello world"}`),
}
entry2 := websocket.HistoryEntry{
Type: "traces",
Timestamp: 200,
Data: map[string]interface{}{"msg": "trace event"},
Data: json.RawMessage(`{"msg":"trace event"}`),
}
if err := fs.Append(ctx, entry1); err != nil {