Skip to content

Instantly share code, notes, and snippets.

@zolotokrylin
Created November 13, 2017 13:52
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 zolotokrylin/01db70591d00605d40e16fd770c8b4a7 to your computer and use it in GitHub Desktop.
Save zolotokrylin/01db70591d00605d40e16fd770c8b4a7 to your computer and use it in GitHub Desktop.
Simple load test
#!/bin/bash
COUNTER=0
while [ $COUNTER -lt 15 ]; do
curl -X GET https://api.dev.bump.fm/v1.0/playlists -H 'user-agent: mxbl' -I &
let COUNTER=COUNTER+1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment