summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_scheduler.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-03-02 00:20:49 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-02 00:28:19 +0100
commit72be9ffd1fa930637027e4169d59ef90bffbbba6 (patch)
tree49c8f636d531d623144f939a222f075fc80d87f4 /bin/reproducible_scheduler.py
parent0866c872f83c4e0a5d80bae5111042c2408d6598 (diff)
downloadjenkins.debian.net-72be9ffd1fa930637027e4169d59ef90bffbbba6.tar.xz
reproducible: scheduler: print package numbers while updating the sources table
Diffstat (limited to 'bin/reproducible_scheduler.py')
-rwxr-xr-xbin/reproducible_scheduler.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py
index d32f8685..c77546a2 100755
--- a/bin/reproducible_scheduler.py
+++ b/bin/reproducible_scheduler.py
@@ -78,14 +78,14 @@ def update_sources_tables(suite):
# Now actually update the database:
cursor = conn_db.cursor()
# updated packages
- log.debug('Pusing updated packages to the database...')
+ log.debug('Pusing ' + str(len(updated_pkgs)) + ' updated packages to the database...')
cursor.executemany('REPLACE INTO sources ' +
'(id, name, version, suite, architecture) ' +
'VALUES (?, ?, ?, ?, "{arch}")'.format(arch='amd64'),
updated_pkgs)
conn_db.commit()
# new packages
- log.info('Now inserting the new sources in the database: ' +
+ log.info('Now inserting ' + str(len(pkgs_to_add)) + ' new sources in the database: ' +
str(pkgs_to_add))
cursor.executemany('INSERT INTO sources ' +
'(name, version, suite, architecture) ' +
@@ -95,7 +95,7 @@ def update_sources_tables(suite):
cur_pkgs_name = [x[0] for x in cur_pkgs]
new_pkgs_name = [x[0] for x in new_pkgs]
rmed_pkgs = [x for x in cur_pkgs_name if x not in new_pkgs_name]
- log.info('Now deleting removed packages: ' + str(rmed_pkgs))
+ log.info('Now deleting ' + str(len(rmed_pkgs)) + ' removed packages: ' + str(rmed_pkgs))
rmed_pkgs_id = []
for pkg in rmed_pkgs:
result = query_db(('SELECT id FROM sources ' +
@@ -250,7 +250,7 @@ def scheduler(suite):
message = 'Scheduled ' + str(len(unknown)) + ' unknown package, ' + \
str(len(new)) + ' packages with new versions and ' + \
str(len(old)) + ' with the same version (total: ' + \
- str(total) + 'in ' + suite + ')'
+ str(total) + ' in ' + suite + ')'
kgb = ['kgb-client', '--conf', '/srv/jenkins/kgb/debian-reproducible.conf',
'--relay-msg']
kgb.extend(message.split())