fix(rcf): restore old values

This commit is contained in:
Swann
2019-02-15 12:11:07 +01:00
parent 3f6c9190e3
commit 0fb3d0186f
2 changed files with 2 additions and 2 deletions

View File

@ -130,7 +130,7 @@ class Client():
for f in self.recv_callback: for f in self.recv_callback:
f(rcfmsg) f(rcfmsg)
else: else:
await asyncio.sleep(0.016) await asyncio.sleep(0.001)
def push_update(self, key, mtype, body): def push_update(self, key, mtype, body):
rcfmsg = RCFMessage(key, self.id, mtype, body) rcfmsg = RCFMessage(key, self.id, mtype, body)

View File

@ -83,7 +83,7 @@ def observer():
client.push_update(key,value_type,value) client.push_update(key,value_type,value)
except: except:
pass pass
return 0.16 return 0.016
# CLIENT-SERVER # CLIENT-SERVER