Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deployment/build-s3-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ zip -q -r9 ../../deployment/regional-s3-assets/container.zip *
cp container-manifest.json $build_dist_dir/

echo "------------------------------------------------------------------------------"
echo "Buildinbg console"
echo "Building console"
echo "------------------------------------------------------------------------------"
cd ../console
[ -e build ] && rm -r build
Expand Down
2 changes: 1 addition & 1 deletion deployment/distributed-load-testing-on-aws.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Description: "(SO0062) - Distributed Load Testing on AWS Version 1.0.0 is a reference architecture for perform applications load testing at scale"
Description: "(SO0062) - Distributed Load Testing on AWS Version 1.0.0 is a reference architecture to perform application load testing at scale"

Parameters:

Expand Down
4 changes: 2 additions & 2 deletions source/console/src/Components/Create/Create.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,15 +254,15 @@ class Create extends React.Component {
type="number"
name="taskCount"
id="taskCount"
max={50}
max={100}
min={1}
step={1}
required
onChange={this.handleInputChange}
/>
<FormText color="muted">
Number of docker containers that will be launched in the Fargate cluster to run the
test scenario, max value 50.
test scenario, max value 100.
</FormText>
</FormGroup>

Expand Down
2 changes: 1 addition & 1 deletion source/console/src/Components/Details/Details.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ class Details extends React.Component {
<Modal isOpen={this.state.cancelModal} toggle={this.cancelToggle}>
<ModalHeader>Warning</ModalHeader>
<ModalBody>
This will stop all running tasks amd end the test.
This will stop all running tasks and end the test.
</ModalBody>
<ModalFooter>
<Button color="link" size="sm" onClick={this.cancelToggle}>Cancel</Button>
Expand Down