Skip to content

Commit 2a42abe

Browse files
authored
Make wheel storage argument optional for disk usage commands (#23404)
Also fix master workflow by pointing it explicitly at the stable storage
1 parent edd96fc commit 2a42abe

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/measure-disk-usage-master.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616

1717
env:
1818
PYTHON_VERSION: "3.13"
19+
INTEGRATIONS_WHEELS_STORAGE: "stable"
1920

2021
jobs:
2122
measure-disk-usage:

ddev/src/ddev/cli/size/utils/common_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def common_params(func: Callable) -> Callable:
2727
@click.option(
2828
"--wheels-storage",
2929
type=click.Choice(["dev", "stable"]),
30-
required=True,
30+
default='dev', # 'dev' is a strict superset of 'stable', so we're more likely to find wheels there.
3131
envvar="INTEGRATIONS_WHEELS_STORAGE",
3232
help=(
3333
"Which wheel storage tier to resolve dependency URLs against. "

0 commit comments

Comments
 (0)