Skip to content

Commit

Permalink
disable second sync scopes on start
Browse files Browse the repository at this point in the history
  • Loading branch information
gideonsmila committed Jan 23, 2025
1 parent 54bca38 commit e1840f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/opal-server/opal_server/scopes/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self, *args, **kwargs):

async def start(self):
await super().start()
self._tasks.append(asyncio.create_task(self._service.sync_scopes()))
# self._tasks.append(asyncio.create_task(self._service.sync_scopes()))

if opal_server_config.POLICY_REFRESH_INTERVAL > 0:
self._tasks.append(asyncio.create_task(self._periodic_polling()))
Expand Down

0 comments on commit e1840f5

Please sign in to comment.