dhoomakethu / stress

stress testing with GO
MIT License
32 stars 10 forks source link

Fix unused context #4

Closed adolsalamanca closed 1 year ago

adolsalamanca commented 1 year ago

I was trying to compile stress to use it locally, and I found it was not compiling due to unused var.

go build stress.go
# command-line-arguments
./stress.go:16:6: context declared and not used

In this PR I simply remove that variable to make stress able to compile.