Skip to content

Commit 0e217d4

Browse files
committed
Remove default value from --workers in click
Fixes GH-2624
1 parent e7775de commit 0e217d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/runner/commands/start.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
@click.command()
2020
@click.option('--bind', '-b', default=None, help='Bind address.', metavar='ADDRESS')
21-
@click.option('--workers', '-w', default=3, show_default=True, help='The number of worker processes for handling requests.')
21+
@click.option('--workers', '-w', help='The number of worker processes for handling requests.')
2222
@click.option('--upgrade', default=False, is_flag=True, help='Upgrade before starting.')
2323
@click.option('--noinput', default=False, is_flag=True, help='Do not prompt the user for input of any kind.')
2424
@click.argument('service', default='http', type=click.Choice(sorted(SERVICES.keys())))

0 commit comments

Comments
 (0)