Skip to content

Commit

Permalink
Merge pull request #9 from parallaxinc/demo
Browse files Browse the repository at this point in the history
Merge Demo to master for Public Release 1
  • Loading branch information
zfi authored Aug 29, 2016
2 parents 4ed8a89 + 0a86d36 commit 525d5cb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PropCCompiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def compile_binary(self, working_directory, action, source_file, binaries, libra

out, err = process.communicate()

if process.returncode == 0 and (err is None or len(err) == 0):
if process.returncode == 0: # and (err is None or len(err) == 0):
out = "Compile successful\n"
success = True
else:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ The load test is configured so that each user makes a request each 5 to 15 secon
- Load average: 0.3 - 0.45
- uwsgi cpu: 24 - 28%

![Locust 200 users](/locust200.png)
![Locust 200 users](/load\ testing/locust200.png)

### 400 users

- Load average: 0.87 - 0.95
- uwsgi cpu: 50 - 62%

![Locust 400 users](/locust400.png)
![Locust 400 users](/load\ testing/locust400.png)


### 500 users
Expand All @@ -84,4 +84,4 @@ The load test is configured so that each user makes a request each 5 to 15 secon

Once a certain load is reached, response times go up fast.

![Locust 500 users](/locust500.png)
![Locust 500 users](/load\ testing/locust500.png)
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit 525d5cb

Please sign in to comment.