Skip to content

Commit

Permalink
fix: hide list-modules notification (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
andre8244 authored Dec 12, 2024
1 parent 1aeed2b commit 91240a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imageroot/bin/write-user-portal-config
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ with agent.redis_connect(use_replica=True) as rdb:
# Translate the image identifiers in module_set into human readable strings
names_set=set()
try:
response = agent.tasks.run(agent_id='cluster', action='list-modules', data=None)
response = agent.tasks.run(agent_id='cluster', action='list-modules', data=None, extra={'isNotificationHidden': True})
for item in response['output']:
if item.get('id') in modules_set:
names_set.add(item.get('name'))
Expand Down

0 comments on commit 91240a6

Please sign in to comment.