Skip to content

Commit

Permalink
Merge pull request ckan#90 from ckan/fix_default_queue
Browse files Browse the repository at this point in the history
Add default queue to command options
  • Loading branch information
Zharktas authored Mar 27, 2023
2 parents 938cd8f + 975628b commit cbfadf9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
with:
python-version: '3.6'
python-version: '3.10'
- name: Install requirements
run: pip install flake8 pycodestyle
- name: Check syntax
Expand Down
2 changes: 1 addition & 1 deletion ckanext/archiver/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def archiver():


@archiver.command()
@click.option('-q', '--queue')
@click.option('-q', '--queue', default='bulk')
@click.argument('identifiers', nargs=-1)
def update(identifiers, queue):
utils.update(identifiers, queue)
Expand Down

0 comments on commit cbfadf9

Please sign in to comment.