Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cache): Add Cache-Control: no-cache support for Loki instant queries. #12896

Merged
merged 11 commits into from
May 19, 2024
Prev Previous commit
Next Next commit
fix paramsDetectedLabelsWrapper
Signed-off-by: Kaviraj <[email protected]>
  • Loading branch information
kavirajk committed May 16, 2024
commit 9867e6c16d1784a923bb43191e429513099215a5
4 changes: 4 additions & 0 deletions pkg/querier/queryrange/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -2070,6 +2070,10 @@ func (p paramsDetectedFieldsWrapper) GetStoreChunks() *logproto.ChunkRefGroup {
return nil
}

func (p paramsDetectedLabelsWrapper) CachingOptions() resultscache.CachingOptions {
return resultscache.CachingOptions{}
}

func (p paramsDetectedFieldsWrapper) CachingOptions() resultscache.CachingOptions {
return resultscache.CachingOptions{}
}
Expand Down
Loading