Skip to content

Commit d261d7f

Browse files
committed
workspace: fix wrong default value for fetch_registry_index_during_builds
1 parent ceb04be commit d261d7f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
## Unreleased
77

8+
### Fixed
9+
10+
- The default value for `WorkspaceBuilder::fetch_registry_index_during_builds`
11+
was mistakenly set to `false` instead of `true` by default.
12+
813
## [0.3.1] - 2019-09-23
914

1015
### Fixed

src/workspace.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ impl WorkspaceBuilder {
4242
sandbox_image: None,
4343
command_timeout: DEFAULT_COMMAND_TIMEOUT,
4444
command_no_output_timeout: DEFAULT_COMMAND_NO_OUTPUT_TIMEOUT,
45-
fetch_registry_index_during_builds: false,
45+
fetch_registry_index_during_builds: true,
4646
running_inside_docker: false,
4747
fast_init: false,
4848
}

0 commit comments

Comments
 (0)