Fix panic on logger (#2745)

This commit is contained in:
qwerty287
2023-11-05 09:31:06 +01:00
committed by GitHub
parent 3524301335
commit 45a5a2dde5
2 changed files with 4 additions and 3 deletions

View File

@@ -86,6 +86,7 @@ func (l *log) Write(ctx context.Context, stepID int64, logEntry *model.LogEntry)
if err != nil {
return err
}
s = l.streams[stepID]
}
s.Lock()