diff --git a/tools/testClient/dbConnection.py b/tools/testClient/dbConnection.py index 3e1cd346f5f..08d435b1e44 100644 --- a/tools/testClient/dbConnection.py +++ b/tools/testClient/dbConnection.py @@ -33,6 +33,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)