Guillaume Nodet created FELIX-5051:
--------------------------------------
Summary: Memory leak in eventadmin
Key: FELIX-5051
URL: https://issues.apache.org/jira/browse/FELIX-5051
Project: Felix
Issue Type: Bug
Reporter: Guillaume Nodet
>From debugging through the code, it seems that entries get added to the
>org.apache.felix.eventadmin.impl.tasks.AsyncDeliverTasks#m_running_threads
>(java.util.concurrent.ConcurrentHashMap) but not removed.
In org.apache.felix.eventadmin.impl.tasks.AsyncDeliverTasks.TaskExecuter#run()
the call to remove is trying to remove the "object" rather than the key. This
does not remove anything from the map.
{code}
public void run()
{
...
this.m_running_threads.remove(this);
...
} while ( running );
}
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)