Skip to content

Commit

Permalink
Fix proposed from Incorrect iteration over multiple selected namespaces
Browse files Browse the repository at this point in the history
#178

Co-authored-by: theboringstuff
  • Loading branch information
LeaveMyYard committed Jan 10, 2024
1 parent bce74bf commit b278e4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions robusta_krr/core/integrations/kubernetes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ async def _list_workflows(
tasks = [
loop.run_in_executor(
self.executor,
lambda: namespaced_request(
namespace=namespace,
lambda ns=namespace: namespaced_request(
namespace=ns,
watch=False,
label_selector=settings.selector,
),
Expand Down

0 comments on commit b278e4d

Please sign in to comment.