New connection default of 50

No idea what that was doing with a value of 200
This commit is contained in:
Luke Murphy 2020-12-12 15:48:29 +01:00
parent 919f6d136c
commit b7b087adf0
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with 3 additions and 1 deletions

View File

@ -32,6 +32,8 @@ After installing etherpump on the Varia server, we collectively decided to not w
Added the `--magicwords` flag. Parsing and indexing of magic words is now supported. See [etherpump.vvvvvvaria.org](https://etherpump.vvvvvvaria.org) for more.
Change `--connection` default setting to 50 to avoid overpowering modestly powered servers.
**November 2020**
Releasing Etherpump 0.0.18!

View File

@ -77,7 +77,7 @@ def build_argument_parser(args):
)
parser.add_argument(
"--connection",
default=200,
default=50,
type=int,
help="number of connections to run concurrently",
)