Skip to content

Instantly share code, notes, and snippets.

@nrb
Created September 12, 2014 16:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nrb/66da8398f34cfcd458f1 to your computer and use it in GitHub Desktop.
Save nrb/66da8398f34cfcd458f1 to your computer and use it in GitHub Desktop.
Reproduce Horizon bug #1345955
#!/bin/bash
COUNTER=0
while [ $COUNTER -lt 10000 ]; do
curl http://localhost:8081 & curl http://localhost:8081
let COUNTER=$COUNTER+1
echo "FINISHED ATTEMPT $COUNTER"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment