Skip to content

Commit

Permalink
fix issue with response workers not sharing stdout appropriately
Browse files Browse the repository at this point in the history
  • Loading branch information
tednaleid committed Jul 30, 2024
1 parent 541f72c commit 7d01150
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion execcontext/execcontext.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ func New(conf *config.Config, in io.Reader, stderr io.Writer, stdout io.Writer)
context.RequestWorkers = 1
}

context.ResponseWorkers = context.RequestWorkers
// updating to a single response worker for now, need to fix a bug where they aren't sharing stdout properly
context.ResponseWorkers = 1

if len(conf.RequestFilename) > 0 {
// replace stdin with the file
Expand Down

0 comments on commit 7d01150

Please sign in to comment.