]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bitbake: bitbake: persist_data: Fix Locking Protocol Error
authorJoshua Watt <jpewhacker@gmail.com>
Thu, 3 Jan 2019 16:36:11 +0000 (10:36 -0600)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 8 Jan 2019 11:16:03 +0000 (11:16 +0000)
Under heavy load with process delays, sqlite can issues a "locking
protocol" error (SQLITE_PROTOCOL). Unfortunately, it is impossible to
distinguish between actual locking protocol errors and this race
condition, so they best that can be done is to retry the operation when
the error is detected.

[YOCTO #13108]

(Bitbake rev: 93cd15644f9d12b38abea276fee7b5bade0276df)

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/persist_data.py

index 4468facd18f731cd9e414f64a6fb29243964a0ff..0d44100f10382db600ec818ac368e672000ed2ae 100644 (file)
@@ -59,7 +59,7 @@ class SQLTable(collections.MutableMapping):
                         try:
                             return f(self, *args, **kwargs)
                         except sqlite3.OperationalError as exc:
-                            if 'is locked' in str(exc) and count < 500:
+                            if count < 500 and ('is locked' in str(exc) or 'locking protocol' in str(exc)):
                                 count = count + 1
                                 if reconnect:
                                     self.reconnect()