Skip to content

Commit b8dd277

Browse files
committed
Modify AWS blockquote warning to not mention synchronous code anymore
1 parent bdeaf99 commit b8dd277

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

src/components/shared/blocking-aws-blockquote/blocking-aws-blockquote.view.js

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,14 @@ const BlockingAwsBlockquote = () => (
66
mod="Attention"
77
title="Performance considerations and recommended practices"
88
>
9-
The APIs provided by this jslib operate synchronously, which means k6 must
10-
wait for operations that use the client classes to finish before proceeding
11-
with the rest of the script.
12-
<p>
13-
In some cases, such as downloading large files from S3, this could affect
14-
performance and test results. To minimize the impact on test performance,
15-
we recommend using these operations in the
16-
<span className="code-inline">setup</span> and{' '}
17-
<span className="code-inline">teardown</span>{' '}
18-
<a href="/docs/using-k6/test-lifecycle/">lifecycle functions</a>. These
19-
functions run before and after the test run and thus do not influence test
20-
results.
21-
</p>
9+
In some cases, such as downloading large files from S3, this could affect
10+
performance and test results. To minimize the impact on test performance, we
11+
recommend using these operations in the
12+
<span className="code-inline">setup</span> and{' '}
13+
<span className="code-inline">teardown</span>{' '}
14+
<a href="/docs/using-k6/test-lifecycle/">lifecycle functions</a>. These
15+
functions run before and after the test run and thus do not influence test
16+
results.
2217
</Blockquote>
2318
);
2419

0 commit comments

Comments
 (0)