diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-13 17:32:53 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-14 08:20:38 +0100 |
commit | 0519d1ae13d2f01c2ab71a8458007901ab434732 (patch) | |
tree | 2606f367e4a045c6f850ef11927a270d5d5b95b4 /bitbake/lib/bb/command.py | |
parent | 7663a520612203db35145609a8ff3fd80de4149a (diff) | |
download | poky-0519d1ae13d2f01c2ab71a8458007901ab434732.tar.gz |
bitbake: cooker/command: Add finishcommand to reset cooker state
After running a command on the server, it needs to reset to the initial
state. This ensures that subsequent clients start from a known state
and notice any configuration changes.
Ultimately we may want to do more than this buts a good start and better
than nothing.
(Bitbake rev: dd15648fc2654b8d7c3e00ea7ab3dbf04f24f24b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r-- | bitbake/lib/bb/command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 641cc70619..6c7b891930 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
@@ -124,7 +124,7 @@ class Command: | |||
124 | else: | 124 | else: |
125 | bb.event.fire(CommandCompleted(), self.cooker.event_data) | 125 | bb.event.fire(CommandCompleted(), self.cooker.event_data) |
126 | self.currentAsyncCommand = None | 126 | self.currentAsyncCommand = None |
127 | 127 | self.cooker.finishcommand() | |
128 | 128 | ||
129 | class CommandsSync: | 129 | class CommandsSync: |
130 | """ | 130 | """ |