@Override
public void delete(String id) throws IOException {
assert id != null;
LOG.debug("Deleting session: {}", id);
SessionMirror session = attach(id, false, true);
session.abort();
}
private SessionMirror attach(String id, boolean create, boolean force) throws IOException {
assert id != null;
boolean completed = false;