CloseAndRecv in send
All checks were successful
/ Make image (push) Successful in 49s

This commit is contained in:
nquidox 2026-03-01 01:01:06 +03:00
parent 77c626a7c3
commit a32b1ef69b
3 changed files with 15 additions and 6 deletions

View file

@ -141,7 +141,7 @@ func (app *App) Run(ctx context.Context) {
l := len(sendData)
if l > 0 {
log.WithField("length", l).Debug("Sending parsed data")
app.network.SendResult(apiClient, sendData)
app.network.SendResult(ctx, apiClient, sendData)
sendData = sendData[:0]
}
}