Browse Source

New connection default of 50

No idea what that was doing with a value of 200
main
Luke Murphy 3 years ago
parent
commit
b7b087adf0
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 2
      README.md
  2. 2
      etherpump/commands/pull.py

2
README.md

@ -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!

2
etherpump/commands/pull.py

@ -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",
)

Loading…
Cancel
Save