longshine

Results 11 comments of longshine

+1 with the same issue

hi~ sorry for the delay. Connector里有Connect操作可能绑定了地址,可以试试用`AsyncDatagramAcceptor`来实现收取消息,具体示例请参考:Mina.Example/MulticastUDP/Program.cs

hi~ 理论上与客户端数据收发的过程中出现异常不会影响Acceptor监听,两者是独立的线程。 初步推断可能会是以下原因: - Acceptor监听过程没有启动,如果可以调试的话,请查看`AbstractSocketAcceptor.EndAccept()`方法中是否有成功调用`StartAccept`方法; - Acceptor达到最大连接数,无法接收新连接; - `SocketAsyncEventArgs`资源池出现异常,这在许多快速连接的时候可能会出现,是一个已知的bug,由于前一个连接关闭时回收的`SocketAsyncEventArgs`资源可能还没有被完全释放,而新进入的连接如果被分配到了这个资源,就会出现连接异常。这种情况不太常见,并且只要客户端再次连接就能连上。 可否提供一些具体的代码以便我们重现这个issue?

hi~ 如果 `e.SocketError != SocketError.Success` 说明监听过程出错了,目前`ProcessAccept(...)`方法里只记录了`SocketError.OperationAborted`与`SocketError.Interrupted`两种错误,可能还有别的没有考虑到错误情况,可否把出现的错误记录下来看一看?

Hi~ This is because the UDP connector automatically tries to receive data from remote server, and it fails since the server (`MemoryMonitor`) is not started up yet. Please run the...

Thank you for your advices and interests on this project. It would be totally welcomed if you'd like to contribute.

Hi, `IoConnector.Broadcast()` 继承自 `IoService.Broadcast()`,它的作用与`Socket`中的广播是不一样的,它的作用是对`IoService`内部管理的所有会话统一发送消息。 对于一个`IoConnector`,它等价于: ```csharp IoSession session = connector.Connect(endpoint).Await().Session; session.Write(buffer); ``` 可能是其他原因引发的异常,请把异常详情粘贴来看一看。

Hi @javrasya, The suggestion above may have some drawbacks. Let's say we have several groups of users sharing this issue tracking system. a. Each issue belongs to one group. b....

I am afraid this solution cannot work well in this scenario if the groups of users can be dynamically added or removed, in which case a lot of status fields...

+1 Same issue to me. > #18 ERROR: error writing manifest blob: failed commit on ref "sha256:b0b8b156437e48583181a25ad6fecc5cfa45152005d47e215e824202e6cb579c": unexpected status: 404 Not Found Here is what I found on my gateway:...