]> Frank Brehm's Git Trees - profitbricks/jenkins-build-scripts.git/commitdiff
fix logic typo
authorHolger Levsen <holger@layer-acht.org>
Fri, 12 Oct 2012 13:22:37 +0000 (15:22 +0200)
committerHolger Levsen <holger@layer-acht.org>
Fri, 12 Oct 2012 13:22:37 +0000 (15:22 +0200)
db_add.py

index 779cb5de5af9f4c7dad3ef55e3c7e67876904491..abf06f85452ef076f4288c7b4a69546206ae1a2a 100755 (executable)
--- a/db_add.py
+++ b/db_add.py
@@ -48,11 +48,11 @@ def db_update_build(con, db_id, end, status):
     cur = con.cursor()
     cur.execute("SAVEPOINT a")
     try:
-        cur.execute("UPDATE jenkins_build SET build_end = '%s', status = '%s' WHERE id = %s RETURNING id" % (db_id, end, status))
+        cur.execute("UPDATE jenkins_build SET build_end = '%s', status = '%s' WHERE id = %s RETURNING id" % (end, status, db_id))
         con.commit()
     except psycopg2.DatabaseError as e:
         cur.execute("ROLLBACK TO a")  # have to rollback after failed command
-        logger.debug("UPDATE jenkins_build SET build_end = '%s', status = '%s' WHERE id = %s RETURNING id" % (db_id, end, status))
+        logger.debug("UPDATE jenkins_build SET build_end = '%s', status = '%s' WHERE id = %s RETURNING id" % (end, status, db_id))
     return cur.fetchone()[0]
 
 def db_add_origin(con, origin):