Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
psrvere committed Dec 5, 2024
1 parent 3e15eca commit 07ca2b7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions internal/iothread/iothread.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ func (t *BaseIOThread) Start(ctx context.Context) error {
t.ioThreadReadChan <- data
case err := <-readErrChan:
slog.Debug("Read error in io-thread, connection closed possibly", slog.String("id", t.id), slog.Any("error", err))
t.ioThreadErrChan <- err
return err
case resp := <-t.ioThreadWriteChan:
err := t.ioHandler.Write(ctx, resp)
Expand Down

0 comments on commit 07ca2b7

Please sign in to comment.