Skip to content

Commit 4ad7234

Browse files
committed
TypeError fix
1 parent 57f94cc commit 4ad7234

File tree

1 file changed

+1
-1
lines changed
  • microservices/gatewayJobScheduler

1 file changed

+1
-1
lines changed

microservices/gatewayJobScheduler/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def get_namespaces_with_perm_data_plane(perm_data_plane_value):
140140
kc = admin_api()
141141
namespaces = []
142142
# Find the 'ns' group
143-
ns_groups = kc.get_groups(search='ns')
143+
ns_groups = kc.get_groups()
144144
ns_group = next((g for g in ns_groups if g['name'] == 'ns'), None)
145145
if not ns_group:
146146
return namespaces

0 commit comments

Comments
 (0)