mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 21:49:33 +02:00
bitbake: toasterui: fix variable data error
A bug slipped in the toaster ui that prevented saving of build configuration despite the data being retrieved from the server. This patch fixes the shaming mistake. [YOCTO #7117] (Bitbake rev: 8118f465b9f87c66b2a741008f69198ac5fea901) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
2d78912bc6
commit
4e20211090
@@ -757,7 +757,7 @@ class BuildInfoHelper(object):
|
|||||||
|
|
||||||
# Save build configuration
|
# Save build configuration
|
||||||
data = self.server.runCommand(["getAllKeysWithFlags", ["doc", "func"]])[0]
|
data = self.server.runCommand(["getAllKeysWithFlags", ["doc", "func"]])[0]
|
||||||
self.orm_wrapper.save_build_variables(build_obj, [])
|
self.orm_wrapper.save_build_variables(build_obj, data)
|
||||||
|
|
||||||
return self.brbe
|
return self.brbe
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user