Skip to content

Commit

Permalink
run with 1100 samples
Browse files Browse the repository at this point in the history
  • Loading branch information
schnipseljagd committed Jun 24, 2016
1 parent da79f7f commit 7614289
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pid /var/run/nginx.pid;


events {
worker_connections 2048;
worker_connections 4096;
}


Expand Down
2 changes: 1 addition & 1 deletion tests/Test/BlackBoxTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function countersShouldIncrementAtomically()
$start = microtime(true);
$promises = [];
$sum = 0;
for ($i = 0; $i < 1000; $i++) {
for ($i = 0; $i < 1100; $i++) {
$promises[] = $this->client->getAsync('/examples/some_counter.php?c=' . $i);
$sum += $i;
}
Expand Down

0 comments on commit 7614289

Please sign in to comment.