From 88c18bad27826fa6cd91fa84519d888013d98aab Mon Sep 17 00:00:00 2001 From: Mike McLean Date: Feb 10 2025 13:15:38 +0000 Subject: RepoWatcher: always request for non-anon case --- diff --git a/koji/util.py b/koji/util.py index 1b5e669..45c9630 100644 --- a/koji/util.py +++ b/koji/util.py @@ -227,9 +227,8 @@ class RepoWatcher(object): # we should have waited for builds before creating the request # this could indicate further tagging/untagging, or a bug self.logger.error('Repo request did not satisfy conditions') - else: + elif anon: # check for repo directly - # either first pass or anon mode repoinfo = self.session.repo.get(self.taginfo['id'], min_event=min_event, at_event=self.at_event, opts=self.opts) if repoinfo and self.check_repo(repoinfo):