File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
src/data/markdown/translated-guides/en/02 Using k6/14 Scenarios/01 Executors Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export const options = {
5858export default function () {
5959 http .get (' https://test.k6.io/contacts.php' );
6060 // We're injecting a processing pause for illustrative purposes only!
61- // Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput .
61+ // Sleep time is 500ms. Total iteration time is sleep + time to finish request .
6262 sleep (0.5 );
6363}
6464```
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ export const options = {
5151export default function () {
5252 http .get (' https://test.k6.io/contacts.php' );
5353 // We're injecting a processing pause for illustrative purposes only!
54- // Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput .
54+ // Sleep time is 500ms. Total iteration time is sleep + time to finish request .
5555 sleep (0.5 );
5656}
5757```
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ export const options = {
4646export default function () {
4747 http .get (' https://test.k6.io/contacts.php' );
4848 // We're injecting a processing pause for illustrative purposes only!
49- // Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput .
49+ // Sleep time is 500ms. Total iteration time is sleep + time to finish request .
5050 sleep (0.5 );
5151}
5252```
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export const options = {
5353export default function () {
5454 http .get (' https://test.k6.io/contacts.php' );
5555 // We're injecting a processing pause for illustrative purposes only!
56- // Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput .
56+ // Sleep time is 500ms. Total iteration time is sleep + time to finish request .
5757 sleep (0.5 );
5858}
5959```
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ export const options = {
8787export default function () {
8888 http .get (' https://test.k6.io/contacts.php' );
8989 // We're injecting a processing pause for illustrative purposes only!
90- // Each iteration will be ~515ms, therefore ~2 iterations/second per VU maximum throughput .
90+ // Sleep time is 500ms. Total iteration time is sleep + time to finish request .
9191}
9292```
9393
You can’t perform that action at this time.
0 commit comments