Skip to content

Commit

Permalink
revert to --no-run-cache default for push/pull/fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Berenbaum authored and dberenbaum committed Jul 30, 2024
1 parent 248ba3b commit 417e6d4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions dvc/commands/data_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def add_parser(subparsers, _parent_parser):
pull_parser.add_argument(
"--run-cache",
action=argparse.BooleanOptionalAction,
default=True,
default=False,
help="Fetch run history for all stages.",
)
pull_parser.add_argument(
Expand Down Expand Up @@ -263,7 +263,7 @@ def add_parser(subparsers, _parent_parser):
push_parser.add_argument(
"--run-cache",
action=argparse.BooleanOptionalAction,
default=True,
default=False,
help="Push run history for all stages.",
)
push_parser.add_argument(
Expand Down Expand Up @@ -325,7 +325,7 @@ def add_parser(subparsers, _parent_parser):
fetch_parser.add_argument(
"--run-cache",
action=argparse.BooleanOptionalAction,
default=True,
default=False,
help="Fetch run history for all stages.",
)
fetch_parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion dvc/commands/experiments/pull.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def add_parser(experiments_subparsers, parent_parser):
experiments_pull_parser.add_argument(
"--run-cache",
action=argparse.BooleanOptionalAction,
default=True,
default=False,
help="Pull run history for all stages.",
)
experiments_pull_parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion dvc/commands/experiments/push.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def add_parser(experiments_subparsers, parent_parser):
experiments_push_parser.add_argument(
"--run-cache",
action=argparse.BooleanOptionalAction,
default=True,
default=False,
help="Push run history for all stages.",
)
experiments_push_parser.add_argument(
Expand Down

0 comments on commit 417e6d4

Please sign in to comment.