Merge ~paelzer/germinate:report-arch-a-dependency-was-not-found into germinate:master

Proposed by Christian Ehrhardt 
Status: Merged
Merged at revision: e535bb6b22e05aeda74b3a4a1931ed3a2ecdc704
Proposed branch: ~paelzer/germinate:report-arch-a-dependency-was-not-found
Merge into: germinate:master
Diff against target: 26 lines (+4/-3)
1 file modified
germinate/germinator.py (+4/-3)
Reviewer Review Type Date Requested Status
Colin Watson Approve
Iain Lane Pending
Review via email: mp+390466@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Christian Ehrhardt  (paelzer) wrote :

I added the fix that I've found for bug 1895106 to this MP as well

Revision history for this message
Christian Ehrhardt  (paelzer) wrote :

ping?

Revision history for this message
Christian Ehrhardt  (paelzer) wrote :

Any chance to get this reviewed / merged?

Revision history for this message
Colin Watson (cjwatson) wrote :

LGTM. I don't see the fix you mentioned for bug 1895106, though, and I wonder if perhaps you forgot to push it. Perhaps open a new MP for that commit once you find it?

review: Approve
Revision history for this message
Christian Ehrhardt  (paelzer) wrote :

Thanks for review and merge Colin.

I was checking the local branch that I had - you are right and thanks for the hint.
I have not yet pushed that - opening new MP https://code.launchpad.net/~paelzer/germinate/+git/germinate/+merge/396826 for it.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1diff --git a/germinate/germinator.py b/germinate/germinator.py
2index be808b9..11ad556 100644
3--- a/germinate/germinator.py
4+++ b/germinate/germinator.py
5@@ -962,7 +962,8 @@ class Germinator(object):
6
7 else:
8 # No idea
9- _logger.error("Unknown %s package: %s", seed, pkg)
10+ _logger.error("Unknown package %s for seed %s on arch %s",
11+ pkg, seed, self._arch)
12
13 for pkg in seedsnaps:
14 seed._snaps.add(pkg)
15@@ -1452,9 +1453,9 @@ class Germinator(object):
16 desc = "recommendation"
17 else:
18 desc = "dependency"
19- _logger.error("Unknown %s %s by %s", desc,
20+ _logger.error("Unknown %s %s by %s on arch %s", desc,
21 self._unparse_dependency(depname, depver, deptype),
22- pkg)
23+ pkg, self._arch)
24 return False
25
26 if dependlist:

Subscribers

People subscribed via source and target branches