diff --git a/tools/testClient/dbConnection.py b/tools/testClient/dbConnection.py index b6d99193f46..afe5be58695 100644 --- a/tools/testClient/dbConnection.py +++ b/tools/testClient/dbConnection.py @@ -45,6 +45,8 @@ class dbConnection(object): resultRow = [] cursor = None try: + # commit to restart the transaction, else we don't get fresh data + self.db.commit() cursor = self.db.cursor() cursor.execute(sql)