Skip to content

Commit

Permalink
update receive store limits type to string (#309)
Browse files Browse the repository at this point in the history
Signed-off-by: Thibault Mange <[email protected]>
  • Loading branch information
thibaultmg committed Jul 5, 2023
1 parent 650a08b commit 4c73418
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jsonnet/kube-thanos/kube-thanos-receive.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ function(params) {
] else []
) + (
if std.objectHas(tr.config.storeLimits, 'requestSamples') then [
'--store.limits.request-samples=%d' % tr.config.storeLimits.requestSamples,
'--store.limits.request-samples=%s' % tr.config.storeLimits.requestSamples,
] else []
) + (
if std.objectHas(tr.config.storeLimits, 'requestSeries') then [
'--store.limits.request-series=%d' % tr.config.storeLimits.requestSeries,
'--store.limits.request-series=%s' % tr.config.storeLimits.requestSeries,
] else []
) + (
if std.length(tr.config.tracing) > 0 then [
Expand Down

0 comments on commit 4c73418

Please sign in to comment.