Thread t = new Thread("append thread") {
public void run() {
Event e = new EventImpl("foo".getBytes());
try {
snk.open();
started.countDown();
snk.append(e);
} catch (IOException e1) {
// could throw exception but we don't care
LOG.info("don't care about this exception: ", e1);