X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fqueue.py;h=aca1b8a07f702d9f2756cf70c455031860180fbd;hb=d5c5510e389b89bddc072009132ed48b9097fd43;hp=9bc755311af9bc84f1ec54385f3cd25b29c3120f;hpb=d342d7eb97cea451900ef654d546a1ad69a34871;p=dak.git diff --git a/daklib/queue.py b/daklib/queue.py index 9bc75531..aca1b8a0 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -690,11 +690,12 @@ class Upload(object): # Check the version and for file overwrites self.check_binary_against_db(f, session) - b = Binary(f) - b.scan_package() - if len(b.rejects) > 0: - for j in b.rejects: - self.rejects.append(j) + # Temporarily disable contents generation until we change the table storage layout + #b = Binary(f) + #b.scan_package() + #if len(b.rejects) > 0: + # for j in b.rejects: + # self.rejects.append(j) def source_file_checks(self, f, session): entry = self.pkg.files[f]