sbt/testing
Ethan Atkins 9b24e9f9eb Use ConcurrentLinkedDeque for EventHandler
ArrayList::add is not thread safe. I ran into cases where async tests
using utests would fail even when all of the individual tests passed.
This was because multiple threads called back into the handle method of
the handler instance variable, which just delegated to eventList::add.
When this happened, one of the events would get added to the list as a
null reference, which would manifest as an NPE upstream on the master
process. After this change, my tests stopped failing.
2018-03-21 10:50:30 -07:00
..
agent/src/main/java/sbt Use ConcurrentLinkedDeque for EventHandler 2018-03-21 10:50:30 -07:00
src/main Upgrade to contraband 0.4.0 2018-03-12 15:39:07 +00:00
NOTICE Add, configure & enforce file headers 2017-10-05 09:03:40 +01:00