diff options
Diffstat (limited to 'bitbake/lib/bb/persist_data.py')
| -rw-r--r-- | bitbake/lib/bb/persist_data.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bitbake/lib/bb/persist_data.py b/bitbake/lib/bb/persist_data.py index 00f4929945..17975b64a5 100644 --- a/bitbake/lib/bb/persist_data.py +++ b/bitbake/lib/bb/persist_data.py | |||
| @@ -15,9 +15,13 @@ | |||
| 15 | # with this program; if not, write to the Free Software Foundation, Inc., | 15 | # with this program; if not, write to the Free Software Foundation, Inc., |
| 16 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | 16 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 17 | 17 | ||
| 18 | import bb, os | 18 | import os |
| 19 | import logging | ||
| 20 | import bb | ||
| 19 | import bb.utils | 21 | import bb.utils |
| 20 | 22 | ||
| 23 | logger = logging.getLogger("BitBake.PersistData") | ||
| 24 | |||
| 21 | try: | 25 | try: |
| 22 | import sqlite3 | 26 | import sqlite3 |
| 23 | except ImportError: | 27 | except ImportError: |
| @@ -56,7 +60,7 @@ class PersistData: | |||
| 56 | bb.utils.mkdirhier(self.cachedir) | 60 | bb.utils.mkdirhier(self.cachedir) |
| 57 | 61 | ||
| 58 | self.cachefile = os.path.join(self.cachedir, "bb_persist_data.sqlite3") | 62 | self.cachefile = os.path.join(self.cachedir, "bb_persist_data.sqlite3") |
| 59 | bb.msg.debug(1, bb.msg.domain.PersistData, "Using '%s' as the persistent data cache" % self.cachefile) | 63 | logger.debug(1, "Using '%s' as the persistent data cache", self.cachefile) |
| 60 | 64 | ||
| 61 | connection = sqlite3.connect(self.cachefile, timeout=5, isolation_level=None) | 65 | connection = sqlite3.connect(self.cachefile, timeout=5, isolation_level=None) |
| 62 | persistent_database_connection["connection"] = connection | 66 | persistent_database_connection["connection"] = connection |
