Skip to content

Commit bbd0900

Browse files
Add feature flag hbi.api.kessel-force-single-checks-for-bulk (#3691)
1 parent 71cc71a commit bbd0900

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.unleash/flags.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,22 @@
6565
"variants": [],
6666
"createdAt": "2025-11-18T20:58:51.167Z"
6767
},
68+
{
69+
"name": "hbi.api.kessel-force-single-checks-for-bulk",
70+
"description": "Use single-resource checks instead of bulk checks for Kessel (RHINENG-24544).",
71+
"type": "release",
72+
"project": "default",
73+
"stale": false,
74+
"enabled": false,
75+
"strategies": [
76+
{
77+
"name": "default",
78+
"parameters": {}
79+
}
80+
],
81+
"variants": [],
82+
"createdAt": "2026-03-04T16:29:19.146Z"
83+
},
6884
{
6985
"name": "hbi.use_new_system_profile_tables",
7086
"description": "When turned ON, HBI will use the new system profile tables.",

lib/feature_flags.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
FLAG_INVENTORY_REJECT_RHSM_PAYLOADS = "hbi.api.reject-rhsm-payloads"
1414
FLAG_INVENTORY_WORKLOADS_FIELDS_BACKWARD_COMPATIBILITY = "hbi.workloads_fields_backward_compatibility"
1515
FLAG_INVENTORY_KESSEL_GROUPS = "hbi.api.kessel-groups"
16+
FLAG_INVENTORY_KESSEL_FORCE_SINGLE_CHECKS_FOR_BULK = "hbi.api.kessel-force-single-checks-for-bulk"
1617

1718

1819
FLAG_FALLBACK_VALUES = {
@@ -23,6 +24,7 @@
2324
FLAG_INVENTORY_REJECT_RHSM_PAYLOADS: False,
2425
FLAG_INVENTORY_WORKLOADS_FIELDS_BACKWARD_COMPATIBILITY: True,
2526
FLAG_INVENTORY_KESSEL_GROUPS: False,
27+
FLAG_INVENTORY_KESSEL_FORCE_SINGLE_CHECKS_FOR_BULK: False,
2628
}
2729

2830

0 commit comments

Comments
 (0)