Skip to content
This repository was archived by the owner on Aug 2, 2023. It is now read-only.
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/ai/backend/manager/container_registry/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ async def rescan_single_registry(
async for image in self.fetch_repositories(sess):
if not any((w in image) for w in non_kernel_words): # skip non-kernel images
tg.create_task(self._scan_image(sess, image))
await asyncio.sleep(3)
all_updates = self.all_updates.get()
if not all_updates:
log.info('No images found in registry {0}', self.registry_url)
Expand Down