I was applying yum updates today and partway through those on my first builder I realized I had forgotten to disable it -- Bad admin, bad!. I rushed to do that while yum was still busy, but I suspect I was too late. Or perhaps this has nothing to do with my problems, but I sure suspect it.
Regardless, I have a package which builds for my f24 target perfectly yet the same now fails every time for my f25 target (though which was previously never a problem). I discovered where the exception is raised in /usr/sbin/kojid and modified this line slightly to provide better info. The line now looks like:
raise koji.BuildError, "Unknown origin for %s: ext_url=%r localtail=%r" % (key, ext_url, localtail)
The error I see is:
BuildError: Unknown origin for python3-mdct-6.0.0-1.fc25.noarch: ext_url='file:///var/tmp/koji/tasks/937/40937/repo_8178_premerge/' localtail='/repo_8179_premerge/'
Thus the condition for internal rpms which avoids raising this exception is not met because localtail has 8179 versus the ext_url which has 8178 -- off by one.
What do I need to investigate/do to rectify this?
I might have resolved this issue on my own. It appears that a "koji regen-repo f25-build" was helpful here. I'm still curious what is likely to have brought this issue on.
On Fri, 2017-07-07 at 16:54 -0400, John Florian wrote:
I was applying yum updates today and partway through those on my first builder I realized I had forgotten to disable it -- Bad admin, bad!. I rushed to do that while yum was still busy, but I suspect I was too late. Or perhaps this has nothing to do with my problems, but I sure suspect it.
Regardless, I have a package which builds for my f24 target perfectly yet the same now fails every time for my f25 target (though which was previously never a problem). I discovered where the exception is raised in /usr/sbin/kojid and modified this line slightly to provide better info. The line now looks like:
raise koji.BuildError, "Unknown origin for %s: ext_url=%r localtail=%r" % (key, ext_url, localtail)
The error I see is:
BuildError: Unknown origin for python3-mdct-6.0.0-1.fc25.noarch: ext_url='file:///var/tmp/koji/tasks/937/40937/repo_8178_premerge/' localtail='/repo_8179_premerge/'
Thus the condition for internal rpms which avoids raising this exception is not met because localtail has 8179 versus the ext_url which has 8178 -- off by one.
What do I need to investigate/do to rectify this? _______________________________________________ koji-devel mailing list -- koji-devel@lists.fedorahosted.org To unsubscribe send an email to koji-devel-leave@lists.fedorahosted.org
koji-devel@lists.fedorahosted.org