Skip to content

Commit

Permalink
Reset the default value for grpc for static backends to false. (fas…
Browse files Browse the repository at this point in the history
…tly#311)

* Reset the default value for `grpc` for backends to false.
* Update the CHANGELOG with the change.
  • Loading branch information
acw authored and cmckendry committed Feb 8, 2024
1 parent a9f27c0 commit 5810f83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Unreleased

- Fix a bug in which static backends were marked as GRPC by default ([#311](https://github.com/fastly/Viceroy/pull/311))

## 0.8.0 (2023-09-15)

- Make `viceroy_lib::Error` non-exhaustive
Expand Down
2 changes: 1 addition & 1 deletion lib/src/config/backends.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ mod deserialization {
}
})
.transpose()?
.unwrap_or(true);
.unwrap_or(false);

check_for_unrecognized_keys(&toml)?;

Expand Down

0 comments on commit 5810f83

Please sign in to comment.