Tsonglew
Tsonglew
修改用户密码后,已使用这个账号登录的用户不需要重新登录,仍然可以继续正常操作。建议对修改密码后的账号重新验证
第二个例子的 ch 没有初始化,这样也是因为 nil channel 而阻塞的吧?
@harmim @martintrojer I installed infer on my M1 mac from source on main branch, and it works fine. ```java # Hello.java class Hello { int test() { String s =...
> @tsonglew Can you please share the binary? [infer.zip](https://github.com/facebook/infer/files/9897332/infer.zip) here it is
found this problem is due to `RTCSctpTransport._transmit`, solved this by calling `RTCSctpTransport._send_chunk` to send data fragments directly
as a workaround, I altered my datachannel sending code like this ```python self.channel.send(json.dumps({"now": time.time() * 1000})) await self.channel._RTCDataChannel__transport._data_channel_flush() await self.channel._RTCDataChannel__transport._transmit() ```
For apps sensitive to datachannel messages delay, the data should be transmitted immediately after calling `datachannel.send()`, but it isn't facts. Delay on datachannel could be reproduced in this demo: https://github.com/tsonglew/aiortc-datachannel-delay....
@CodePrometheus I will achieve the function through following tasks: 1. Add SW_AGENT_SAMPLE in skywalking/config.py 2. Create a `sampling_service` with `try_sampling`, `reset_sampling_factor` and other methods. `try_sampling` will add one to a...