mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Roll back change of --list option for discover
This commit is contained in:
parent
19b57f8728
commit
af150ef0ae
2 changed files with 2 additions and 5 deletions
|
|
@ -14,8 +14,6 @@ Version 0.15
|
||||||
|
|
||||||
- Deprecated syntax for configuration values is now completely rejected. All
|
- Deprecated syntax for configuration values is now completely rejected. All
|
||||||
values now have to be valid JSON.
|
values now have to be valid JSON.
|
||||||
- The default of ``--list`` for ``vdirsyncer discover`` has changed to
|
|
||||||
``false``. See :ghpr:`543`.
|
|
||||||
- A few UX improvements for Google storages, see :gh:`549` and :gh:`552`.
|
- A few UX improvements for Google storages, see :gh:`549` and :gh:`552`.
|
||||||
|
|
||||||
Version 0.14.1
|
Version 0.14.1
|
||||||
|
|
|
||||||
|
|
@ -172,11 +172,10 @@ def metasync(ctx, collections, max_workers):
|
||||||
@app.command()
|
@app.command()
|
||||||
@click.argument('pairs', nargs=-1)
|
@click.argument('pairs', nargs=-1)
|
||||||
@click.option(
|
@click.option(
|
||||||
'--list/--no-list', default=False,
|
'--list/--no-list', default=True,
|
||||||
help=(
|
help=(
|
||||||
'Whether to list all collections from both sides during discovery, '
|
'Whether to list all collections from both sides during discovery, '
|
||||||
'for debugging. This is slow and may crash for broken servers, so it '
|
'for debugging. This is slow and may crash for broken servers.'
|
||||||
'is disabled by default.'
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@max_workers_option(default=1)
|
@max_workers_option(default=1)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue