Skip to content

Commit

Permalink
Merge pull request #6 from Sainomori/master
Browse files Browse the repository at this point in the history
LITE-29206 Failing ms_cooper report fix
  • Loading branch information
terezbw authored Dec 12, 2023
2 parents 53d8045 + 6bd0672 commit 771d412
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion reports/ms_cooper/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,9 @@ def get_param_value(params, param_id):
return param['value'] if 'value' in param else '-'
return '-'


def init_product_tc_cache(product, client):
rql = R().product.id.eq(product) & R().status.eq('active') & R().tier_level.eq(1)
rql = R().product.id.eq(product) & R().status.eq('active') & R().tier_level.eq(1) & R().connection.type.ne('null()')
tcs = client.ns('tier').collection('configs').filter(rql).select(
'-configuration',
'-connection',
Expand Down

0 comments on commit 771d412

Please sign in to comment.