diff --git a/CHANGELOG.md b/CHANGELOG.md index a13e001e367..3fb8dcf3d77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,9 @@ We use *breaking :warning:* to mark changes that are not backward compatible (re ### Added - [#4680](https://github.com/thanos-io/thanos/pull/4680) Query: add `exemplar.partial-response` flag to control partial response. +### Added +- [#4680](https://github.com/thanos-io/thanos/pull/4680) Query: add `exemplar.partial-response` flag to control partial response. + ## v0.23.0 - In Progress ### Added diff --git a/examples/interactive/interactive_test.go b/examples/interactive/interactive_test.go index 4080af6a585..2bd00579bc4 100644 --- a/examples/interactive/interactive_test.go +++ b/examples/interactive/interactive_test.go @@ -89,7 +89,7 @@ func createData() (perr error) { // TestReadOnlyThanosSetup runs read only Thanos setup that has data from `maxTimeFresh - 2w` to `maxTimeOld`, with extra monitoring and tracing for full playground experience. // Run with test args `-test.timeout 9999m`. func TestReadOnlyThanosSetup(t *testing.T) { - t.Skip("This is interactive test - it will until you will kill it or curl 'finish' endpoint. Comment and run as normal test to use it!") + t.Skip("This is interactive test - it will run until you will kill it or curl 'finish' endpoint. Comment and run as normal test to use it!") // Create 20k series for 2w of TSDB blocks. Cache them to 'data' dir so we don't need to re-create on every run (it takes ~5m). _, err := os.Stat(data)