This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Not intended for heavy load testing or something, just in case you need small number of | |
# traffic need to created in your local terminal | |
# below create 10 requests with given curl command | |
seq 1 10 | xargs -n1 -P10 curl --header "Content-Type: application/json" --header "Authorization: Bearer ADD_YOUR_TOKEN_HERE" -d "{\"accountId\":1234567890}" https://YOUR_FULL_URL_HERE |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# Authors: Olivier Grisel <olivier.grisel@ensta.org> | |
# Mathieu Blondel <mathieu@mblondel.org> | |
# Lars Buitinck <L.J.Buitinck@uva.nl> | |
# Robert Layton <robertlayton@gmail.com> | |
# Jochen Wersdörfer <jochen@wersdoerfer.de> | |
# Roman Sinayev <roman.sinayev@gmail.com> | |
# | |
# License: BSD 3 clause | |
""" |