* Re: [PATCH 1/5] toaster: Remove DATABASE_URL being passed around as an environment var
2016-04-25 18:04 [PATCH 1/5] toaster: Remove DATABASE_URL being passed around as an environment var Michael Wood
` (3 preceding siblings ...)
2016-04-25 18:04 ` [PATCH 5/5] toaster: tests build Add a test for a build of core-image-minimal Michael Wood
@ 2016-04-26 17:10 ` Smith, Elliot
4 siblings, 0 replies; 14+ messages in thread
From: Smith, Elliot @ 2016-04-26 17:10 UTC (permalink / raw)
To: Michael Wood; +Cc: toaster
[-- Attachment #1.1: Type: text/plain, Size: 8746 bytes --]
On 25 April 2016 at 19:04, Michael Wood <michael.g.wood@intel.com> wrote:
> We don't need to pass the DATABASE_URL around and read it back if we
> setup the django framework in the correct way.
> We make the default sqlite database path a full path so that the
> database isn't being assumed to be in CWD.
>
I think there's a problem here, as I get multiple errors when I try to run
a build via the Toaster UI (see attached file).
The build does appear to complete correctly (bitbake reports that the tasks
have run); but Toaster never notices this, presumably because of the
errors, and the build "hangs" in the UI.
I think the problem is that the database isn't being located correctly by
toasterui, which makes it appear as though *all* of the database tables are
missing. Note that the migrations have run and I have the toaster.sqlite
file in my build/ directory as expected, complete with all its tables. I
have replicated this with a completely clean shell and new database.
Elliot
>
> Also add some more useful comments on the database settings.
>
> This is preparation work to migrate the build tests and be able to
> trigger builds on differently configured databases.
>
> Signed-off-by: Michael Wood <michael.g.wood@intel.com>
> ---
> bitbake/bin/toaster | 2 -
> bitbake/lib/bb/ui/buildinfohelper.py | 20 +++----
> .../toastermain/management/commands/get-dburl.py | 9 ---
> bitbake/lib/toaster/toastermain/settings.py | 64
> +++-------------------
> 4 files changed, 17 insertions(+), 78 deletions(-)
> delete mode 100644
> bitbake/lib/toaster/toastermain/management/commands/get-dburl.py
>
> diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster
> index 987d53c1..91716e6 100755
> --- a/bitbake/bin/toaster
> +++ b/bitbake/bin/toaster
> @@ -100,7 +100,6 @@ stop_system()
> fi
> webserverKillAll
> # unset exported variables
> - unset DATABASE_URL
> unset TOASTER_CONF
> unset TOASTER_DIR
> unset BITBAKE_UI
> @@ -278,7 +277,6 @@ case $CMD in
> return 4
> fi
> export BITBAKE_UI='toasterui'
> - export DATABASE_URL=`$MANAGE get-dburl`
> $MANAGE runbuilds & echo $! >${BUILDDIR}/.runbuilds.pid
> # set fail safe stop system on terminal exit
> trap stop_system SIGHUP
> diff --git a/bitbake/lib/bb/ui/buildinfohelper.py
> b/bitbake/lib/bb/ui/buildinfohelper.py
> index 9397905..b07dc81 100644
> --- a/bitbake/lib/bb/ui/buildinfohelper.py
> +++ b/bitbake/lib/bb/ui/buildinfohelper.py
> @@ -21,19 +21,19 @@ import bb
> import re
> import os
>
> -os.environ["DJANGO_SETTINGS_MODULE"] = "toaster.toastermain.settings"
> -
> -
> import django
> from django.utils import timezone
>
> +import toaster
> +# Add toaster module to the search path to help django.setup() find the
> right
> +# modules
> +sys.path.insert(0, os.path.dirname(toaster.__file__))
>
> -def _configure_toaster():
> - """ Add toaster to sys path for importing modules
> - """
> -
> sys.path.append(os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))),
> 'toaster'))
> -_configure_toaster()
> -
> +#Set the DJANGO_SETTINGS_MODULE if it's not already set
> +os.environ["DJANGO_SETTINGS_MODULE"] =\
> + os.environ.get("DJANGO_SETTINGS_MODULE",
> + "toaster.toastermain.settings")
> +# Setup django framework (needs to be done before importing modules)
> django.setup()
>
> from orm.models import Build, Task, Recipe, Layer_Version, Layer, Target,
> LogMessage, HelpText
> @@ -54,11 +54,11 @@ from datetime import datetime, timedelta
>
> from django.db import transaction, connection
>
> +
> # pylint: disable=invalid-name
> # the logger name is standard throughout BitBake
> logger = logging.getLogger("ToasterLogger")
>
> -
> class NotExisting(Exception):
> pass
>
> diff --git
> a/bitbake/lib/toaster/toastermain/management/commands/get-dburl.py
> b/bitbake/lib/toaster/toastermain/management/commands/get-dburl.py
> deleted file mode 100644
> index 22b3eb7..0000000
> --- a/bitbake/lib/toaster/toastermain/management/commands/get-dburl.py
> +++ /dev/null
> @@ -1,9 +0,0 @@
> -from toastermain.settings import getDATABASE_URL
> -from django.core.management.base import NoArgsCommand
> -
> -class Command(NoArgsCommand):
> - args = ""
> - help = "get database url"
> -
> - def handle_noargs(self,**options):
> - print getDATABASE_URL()
> diff --git a/bitbake/lib/toaster/toastermain/settings.py
> b/bitbake/lib/toaster/toastermain/settings.py
> index 74ab604..063460b 100644
> --- a/bitbake/lib/toaster/toastermain/settings.py
> +++ b/bitbake/lib/toaster/toastermain/settings.py
> @@ -21,7 +21,7 @@
>
> # Django settings for Toaster project.
>
> -import os, re
> +import os
>
> DEBUG = True
> TEMPLATE_DEBUG = DEBUG
> @@ -40,12 +40,14 @@ MANAGERS = ADMINS
>
> DATABASES = {
> 'default': {
> - 'ENGINE': 'django.db.backends.sqlite3', # Add
> 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
> - 'NAME': 'toaster.sqlite', # Or path to
> database file if using sqlite3.
> + # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
> + 'ENGINE': 'django.db.backends.sqlite3',
> + # DB name or full path to database file if using sqlite3.
> + 'NAME': 'toaster.sqlite',
> 'USER': '',
> 'PASSWORD': '',
> - 'HOST': '127.0.0.1', # Empty for localhost
> through domain sockets or '127.0.0.1' for localhost through TCP.
> - 'PORT': '3306', # Set to empty string for
> default.
> + #'HOST': '127.0.0.1', # e.g. mysql server
> + #'PORT': '3306', # e.g. mysql port
> }
> }
>
> @@ -55,58 +57,6 @@ DATABASES = {
> if 'sqlite' in DATABASES['default']['ENGINE']:
> DATABASES['default']['OPTIONS'] = { 'timeout': 20 }
>
> -# Reinterpret database settings if we have DATABASE_URL environment
> variable defined
> -
> -if 'DATABASE_URL' in os.environ:
> - dburl = os.environ['DATABASE_URL']
> -
> - if dburl.startswith('sqlite3://'):
> - result = re.match('sqlite3://(.*)', dburl)
> - if result is None:
> - raise Exception("ERROR: Could not read sqlite database url:
> %s" % dburl)
> - DATABASES['default'] = {
> - 'ENGINE': 'django.db.backends.sqlite3',
> - 'NAME': result.group(1),
> - 'USER': '',
> - 'PASSWORD': '',
> - 'HOST': '',
> - 'PORT': '',
> - }
> - elif dburl.startswith('mysql://'):
> - # URL must be in this form: mysql://user:pass@host:port/name
> - result =
> re.match(r"mysql://([^:]*):([^@]*)@([^:]*):(\d*)/([^/]*)", dburl)
> - if result is None:
> - raise Exception("ERROR: Could not read mysql database url:
> %s" % dburl)
> - DATABASES['default'] = {
> - 'ENGINE': 'django.db.backends.mysql',
> - 'NAME': result.group(5),
> - 'USER': result.group(1),
> - 'PASSWORD': result.group(2),
> - 'HOST': result.group(3),
> - 'PORT': result.group(4),
> - }
> - else:
> - raise Exception("FIXME: Please implement missing database url
> schema for url: %s" % dburl)
> -
> -
> -# Allows current database settings to be exported as a DATABASE_URL
> environment variable value
> -
> -def getDATABASE_URL():
> - d = DATABASES['default']
> - if d['ENGINE'] == 'django.db.backends.sqlite3':
> - if d['NAME'] == ':memory:':
> - return 'sqlite3://:memory:'
> - elif d['NAME'].startswith("/"):
> - return 'sqlite3://' + d['NAME']
> - return "sqlite3://" + os.path.join(os.getcwd(), d['NAME'])
> -
> - elif d['ENGINE'] == 'django.db.backends.mysql':
> - return "mysql://" + d['USER'] + ":" + d['PASSWORD'] + "@" +
> d['HOST'] + ":" + d['PORT'] + "/" + d['NAME']
> -
> - raise Exception("FIXME: Please implement missing database url schema
> for engine: %s" % d['ENGINE'])
> -
> -
> -
> # Hosts/domain names that are valid for this site; required if DEBUG is
> False
> # See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
> ALLOWED_HOSTS = []
> --
> 2.7.4
>
> --
> _______________________________________________
> toaster mailing list
> toaster@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/toaster
>
--
Elliot Smith
Software Engineer
Intel Open Source Technology Centre
[-- Attachment #1.2: Type: text/html, Size: 11496 bytes --]
[-- Attachment #2: toaster_ui.log --]
[-- Type: text/x-log, Size: 135265 bytes --]
NOTE: ToasterUI waiting for events
ERROR: no such table: bldcontrol_buildrequest
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 265, in main
buildinfohelper.store_log_event(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1468, in store_log_event
buildrequest = BuildRequest.objects.get(pk = br)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/manager.py", line 127, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 328, in get
num = len(clone)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 144, in __len__
self._fetch_all()
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 965, in _fetch_all
self._result_cache = list(self.iterator())
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 238, in iterator
results = compiler.execute_sql()
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/sql/compiler.py", line 840, in execute_sql
cursor.execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/utils.py", line 79, in execute
return super(CursorDebugWrapper, self).execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/utils.py", line 64, in execute
return self.cursor.execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/utils.py", line 98, in __exit__
six.reraise(dj_exc_type, dj_exc_value, traceback)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/utils.py", line 64, in execute
return self.cursor.execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/sqlite3/base.py", line 318, in execute
return Database.Cursor.execute(self, query, params)
OperationalError: no such table: bldcontrol_buildrequest
NOTE: Resolving any missing task queue dependencies
ERROR: no such table: bldcontrol_buildenvironment
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 406, in main
buildinfohelper.store_layer_info(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1003, in store_layer_info
self.internal_state['lvs'][self.orm_wrapper.get_update_layer_object(layerinfos[layer], self.brbe)] = layerinfos[layer]['version']
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 429, in get_update_layer_object
bc = bbcontroller.getBuildEnvironmentController(pk = be_id)
File "../bitbake/lib/toaster/bldcontrol/bbcontroller.py", line 84, in getBuildEnvironmentController
be = BuildEnvironment.objects.filter(Q(**kwargs))[0]
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 201, in __getitem__
return list(qs)[0]
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 162, in __iter__
self._fetch_all()
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 965, in _fetch_all
self._result_cache = list(self.iterator())
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 238, in iterator
results = compiler.execute_sql()
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/sql/compiler.py", line 840, in execute_sql
cursor.execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/utils.py", line 79, in execute
return super(CursorDebugWrapper, self).execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/utils.py", line 64, in execute
return self.cursor.execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/utils.py", line 98, in __exit__
six.reraise(dj_exc_type, dj_exc_value, traceback)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/utils.py", line 64, in execute
return self.cursor.execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/sqlite3/base.py", line 318, in execute
return Database.Cursor.execute(self, query, params)
OperationalError: no such table: bldcontrol_buildenvironment
Build Configuration:
BB_VERSION = "1.30.0"
BUILD_SYS = "x86_64-linux"
NATIVELSBSTRING = "Fedora-20"
TARGET_SYS = "i586-poky-linux"
MACHINE = "qemux86"
DISTRO = "poky"
DISTRO_VERSION = "2.1"
TUNE_FEATURES = "m32 i586"
TARGET_FPU = ""
meta-poky
meta-yocto-bsp = "master:3f86af4148744c65b3d78f8df0d5e4d852cf7ae8"
meta = "elliot/toaster/9455-fix_oe-core_usage-v2:a9b503b268e94d311f892fa00c5d6bd9ffdb228e"
NOTE: Fetching uninative binary shim from http://downloads.yoctoproject.org/releases/uninative/0.95/x86_64-nativesdk-libc.tar.bz2;sha256sum=26d46c61ad88cc245e31c88549717c0092a838d111b93ec169d88b08cc027581
ERROR: no such table: bldcontrol_buildrequest
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 246, in main
buildinfohelper.store_started_build(event, build_log_file_path)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1016, in store_started_build
build_obj = self.orm_wrapper.create_build_object(build_information, self.brbe, self.project)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 151, in create_build_object
buildrequest = BuildRequest.objects.get(pk = br)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/manager.py", line 127, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 328, in get
num = len(clone)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 144, in __len__
self._fetch_all()
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 965, in _fetch_all
self._result_cache = list(self.iterator())
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 238, in iterator
results = compiler.execute_sql()
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/sql/compiler.py", line 840, in execute_sql
cursor.execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/utils.py", line 79, in execute
return super(CursorDebugWrapper, self).execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/utils.py", line 64, in execute
return self.cursor.execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/utils.py", line 98, in __exit__
six.reraise(dj_exc_type, dj_exc_value, traceback)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/utils.py", line 64, in execute
return self.cursor.execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/sqlite3/base.py", line 318, in execute
return Database.Cursor.execute(self, query, params)
OperationalError: no such table: bldcontrol_buildrequest
NOTE: Preparing RunQueue
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 433, in main
buildinfohelper.store_dependency_information(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1267, in store_dependency_information
layer_version_obj = self._get_layer_version_for_path(path[1:]) # paths start with a ^
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 412, in main
buildinfohelper.store_missed_state_tasks(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1201, in store_missed_state_tasks
recipe_information = self._get_recipe_information_from_taskfile(fn)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
NOTE: Executing SetScene Tasks
NOTE: Executing RunQueue Tasks
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 250, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 337, in main
buildinfohelper.store_started_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1104, in store_started_task
recipe_information = self._get_recipe_information_from_taskfile(event.taskfile)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 949, in _get_recipe_information_from_taskfile
layer_version_obj = self._get_layer_version_for_path(localfilepath)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 922, in _get_layer_version_for_path
assert 'build' in self.internal_state
AssertionError
ERROR:
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 341, in main
buildinfohelper.update_and_store_task(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1156, in update_and_store_task
assert identifier in self.internal_state['taskdata']
AssertionError
NOTE: Tasks Summary: Attempted 79 tasks of which 0 didn't need to be rerun and all succeeded.
ERROR: 'build'
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 408, in main
buildinfohelper.store_tasks_stats(event)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1140, in store_tasks_stats
build = self.internal_state['build']
KeyError: 'build'
NOTE: Build exited with errorcode 0
ERROR: no such table: bldcontrol_buildenvironment
Traceback (most recent call last):
File "../bitbake/lib/bb/ui/toasterui.py", line 377, in main
buildinfohelper.close(errorcode)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1503, in close
self._store_build_done(errorcode)
File "../bitbake/lib/bb/ui/buildinfohelper.py", line 1415, in _store_build_done
be = BuildEnvironment.objects.get(pk = be_id)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/manager.py", line 127, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 328, in get
num = len(clone)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 144, in __len__
self._fetch_all()
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 965, in _fetch_all
self._result_cache = list(self.iterator())
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/query.py", line 238, in iterator
results = compiler.execute_sql()
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/models/sql/compiler.py", line 840, in execute_sql
cursor.execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/utils.py", line 79, in execute
return super(CursorDebugWrapper, self).execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/utils.py", line 64, in execute
return self.cursor.execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/utils.py", line 98, in __exit__
six.reraise(dj_exc_type, dj_exc_value, traceback)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/utils.py", line 64, in execute
return self.cursor.execute(sql, params)
File "/home/ell/toaster-run/toaster-env/lib/python2.7/site-packages/django/db/backends/sqlite3/base.py", line 318, in execute
return Database.Cursor.execute(self, query, params)
OperationalError: no such table: bldcontrol_buildenvironment
WARNING: Return value is 319
^ permalink raw reply [flat|nested] 14+ messages in thread