Skip to content

Commit

Permalink
fix(config): Fix accidentally changed bakery config (#3505) (#3506)
Browse files Browse the repository at this point in the history
The commit to clean up the config file by pushing some config down
to code accidentally changed the default value of roscoApisEnabled.
This was set as true in orca.yml, but I forgot to flip the default
to true in code when removing the value in orca.yml, which ended up
being a breaking change.

This change flips the default value of the boolean to true in code,
restoring the deafult to what it was prior to the earlier change.

Co-authored-by: Eric Zimanyi <[email protected]>
  • Loading branch information
spinnakerbot and ezimanyi authored Mar 11, 2020
1 parent f3c271d commit e6ab116
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
@ConfigurationProperties(prefix = "bakery")
public class BakeryConfigurationProperties {
private String baseUrl;
private boolean roscoApisEnabled = false;
private boolean roscoApisEnabled = true;
private boolean extractBuildDetails = true;
private boolean allowMissingPackageInstallation = false;
private List<SelectableService.BaseUrl> baseUrls;
Expand Down

0 comments on commit e6ab116

Please sign in to comment.