beremiz

fix race condition in ProcessLogger

2016-08-24, Andrey Skvortsov
f7ac0d11118e
fix race condition in ProcessLogger
from pyjs.jsonrpc import JSONRPCServiceBase
class JSONRPCService(JSONRPCServiceBase):
def serve(self):
return self.process(request.body.read())
def __call__(self,func):
self.methods[func.__name__]=func
return func