Skip to content

Commit 525d5cb

Browse files
authored
Merge pull request #9 from parallaxinc/demo
Merge Demo to master for Public Release 1
2 parents 4ed8a89 + 0a86d36 commit 525d5cb

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

PropCCompiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def compile_binary(self, working_directory, action, source_file, binaries, libra
189189

190190
out, err = process.communicate()
191191

192-
if process.returncode == 0 and (err is None or len(err) == 0):
192+
if process.returncode == 0: # and (err is None or len(err) == 0):
193193
out = "Compile successful\n"
194194
success = True
195195
else:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ The load test is configured so that each user makes a request each 5 to 15 secon
6767
- Load average: 0.3 - 0.45
6868
- uwsgi cpu: 24 - 28%
6969

70-
![Locust 200 users](/locust200.png)
70+
![Locust 200 users](/load\ testing/locust200.png)
7171

7272
### 400 users
7373

7474
- Load average: 0.87 - 0.95
7575
- uwsgi cpu: 50 - 62%
7676

77-
![Locust 400 users](/locust400.png)
77+
![Locust 400 users](/load\ testing/locust400.png)
7878

7979

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

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

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

0 commit comments

Comments
 (0)