Skip to content

Commit

Permalink
[RPC] android rpc app on rk3399 send a non-strict format json
Browse files Browse the repository at this point in the history
Signed-off-by: Taikang Hu <[email protected]>
  • Loading branch information
Taikang Hu committed Jul 9, 2020
1 parent e719cd9 commit 90cc220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/rpc/tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def on_message(self, message):
del self._data[:4 + self._msg_size]
self._msg_size = 0
# pylint: disable=broad-except
self.call_handler(json.loads(msg))
self.call_handler(json.loads(msg, strict=False))
else:
return

Expand Down

0 comments on commit 90cc220

Please sign in to comment.