1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-03 01:40:07 +00:00

bitbake none/xmlrpc servers: Only send pickled events to the xmlrpc server

Only the xmlrpc server needs pickled events. Use the function names
to signify this requirement.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2011-06-08 11:19:40 +01:00
parent cd3c4292e7
commit b34d66225f
3 changed files with 6 additions and 4 deletions
+1 -2
View File
@@ -28,7 +28,6 @@
import time
import bb
import pickle
import signal
DEBUG = False
@@ -68,7 +67,7 @@ class BBUIEventQueue:
self.parent = parent
@staticmethod
def send(event):
bb.server.none.eventQueue.append(pickle.loads(event))
bb.server.none.eventQueue.append(event)
@staticmethod
def quit():
return