diff --git a/README.md b/README.md index 3d11e18..7ead8bd 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ You can get started using the following steps: 7. Choose whether you want SSH access to the Amazon EC2 instances. *Note: If you choose to enable SSH and do not have an existing SSH key stored on AWS, the EB CLI requires ssh-keygen to be available on the path to generate SSH keys.* 4. Run `eb create -i c4.large --scale 1 --envvars TARGET_URL= --instance_profile aws-elasticbeanstalk-locust-role` to begin the creation of your load generation environment. Replace `` with the URL of the web app that you want to test. - *Note: If you don't have a default VPC (most AWS accounts created in 2014 or later should have a default VPC in the account) in your account, please substitue the above instance type with c3.large.* + *Note: If you don't have a default VPC (most AWS accounts created in 2014 or later should have a default VPC in the account) in your account, please substitute the above instance type with c3.large.* 1. Enter the environment name of your choice. 2. Enter the CNAME prefix you want to use for this environment. 5. Once the environment creation process completes, run `eb open` to open the [Locust](http://locust.io/) dashboard and start your tests. diff --git a/build.rb b/build.rb index 73cb144..902f4d2 100755 --- a/build.rb +++ b/build.rb @@ -69,7 +69,7 @@ def main end # write the .foreman file with zero master processes and number of cores - # available follower proceses + # available follower processes File.open('.foreman', "w") { |f| f.print "concurrency: locust-master=0,locust-follower=#{num_cores}" } end