提交 e1bb1650 编写于 作者: F Frank Lichtenheld

do not support multi-archive mode in process-upload

We don't actually have any multi-archive machines at the moment
and removing it makes test-setups easier to do.
Signed-off-by: NFrank Lichtenheld <djpig@debian.org>
上级 8553fbde
......@@ -2088,7 +2088,7 @@ def add_deb_to_db(u, filename, session=None):
filename = entry["pool name"] + filename
fullpath = os.path.join(cnf["Dir::Pool"], filename)
if not entry.get("location id", None):
entry["location id"] = get_location(cnf["Dir::Pool"], entry["component"], utils.where_am_i(), session).location_id
entry["location id"] = get_location(cnf["Dir::Pool"], entry["component"], session=session).location_id
if not entry.get("files id", None):
poolfile = add_poolfile(filename, entry, entry["location id"], session)
......
......@@ -720,7 +720,6 @@ class Upload(object):
def per_suite_file_checks(self, f, suite, session):
cnf = Config()
entry = self.pkg.files[f]
archive = utils.where_am_i()
# Skip byhand
if entry.has_key("byhand"):
......@@ -764,9 +763,9 @@ class Upload(object):
# Determine the location
location = cnf["Dir::Pool"]
l = get_location(location, entry["component"], archive, session)
l = get_location(location, entry["component"], session=session)
if l is None:
self.rejects.append("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (entry["component"], archive))
self.rejects.append("[INTERNAL ERROR] couldn't determine location (Component: %)" % entry["component"])
entry["location id"] = -1
else:
entry["location id"] = l.location_id
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册