In my server log I see these errors:
[IncomingSocketManager.swift:252 removeIdleSockets(removeAll:)] epoll_ctl failure. Error code=1. Reason=Operation not permitted
It seems that the removeIdleSockets is getting the EPERM exception when cleaning up idle connections.
I'm running my server using this Docker container. It is deployed on Amazon ECS.
My server is mostly a websocket server. There is a memory leak I'm trying to investigate and I wonder if this might be related.
In my server log I see these errors:
[IncomingSocketManager.swift:252 removeIdleSockets(removeAll:)] epoll_ctl failure. Error code=1. Reason=Operation not permittedIt seems that the removeIdleSockets is getting the
EPERMexception when cleaning up idle connections.I'm running my server using this Docker container. It is deployed on Amazon ECS.
My server is mostly a websocket server. There is a memory leak I'm trying to investigate and I wonder if this might be related.