Skip to content

Instantly share code, notes, and snippets.

@jmandel
Created September 20, 2013 20:46
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 jmandel/6643682 to your computer and use it in GitHub Desktop.
Save jmandel/6643682 to your computer and use it in GitHub Desktop.
Rapid-fire requests to `http://hl7connect.healthintersections.com.au/svc/fhir/` result in `500` response status.
$ sh three-requests.sh
Response 2: 500
Response 1: 200
Response 3: 200
URL=http://hl7connect.healthintersections.com.au/svc/fhir/patient/search?_count=2
curl -s -o /dev/null -w "\nResponse 1: %{http_code}" $URL &
curl -s -o /dev/null -w "\nResponse 2: %{http_code}" $URL &
curl -s -o /dev/null -w "\nResponse 3: %{http_code}" $URL &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment