Shuai Liu
Shuai Liu
+1 for this. Are there some solution without changing the code to this issue?
Has this issue been resolved? I meet the same issue when install the lastest `0.8.1` with poetry. ``` Because qdrant-client (1.7.0) depends on numpy (>=1.26) and metagpt (0.8.0) depends on...
@co0kie-guapi 放在 HttpHeader 里面呢
这个问题解决了嘛?
是的,我也发现了重复这个问题, 改用了 https://github.com/leezng/vue-json-pretty 这个组件。
@Madhanj It quite confused me!
@Madhanj Thx a lot! `onCreateOptionsMenu` was called successfully~ but, is there somebody tell me why it can't when extended Fragment rather than SherlockFragment class?
你 BeforeHandshake 里面关闭 session 应该是个异步操作吧,如果没有立刻关闭,框架还是会继续往下走,去尝试 handshake 的。参考: ``` pojoEndpointServer.doBeforeHandshake(channel, req, pattern); // 虽然你调用了 session.close(),但是还没真正 close,下面的判断可能不会命中 if (!channel.isActive()) { return; } ``` 源码链接:https://github.com/YeautyYE/netty-websocket-spring-boot-starter/blob/master/src/main/java/org/yeauty/standard/HttpServerHandler.java#L212