if( null == couchClient ) {
throw new ServletException("Replication worker requires a CouchDb client");
}
try {
replicationWorker = new ReplicationWorker();
replicationWorker.setCouchClient(couchClient);
replicationWorker.start();
} catch (Exception e) {
throw new ServletException("Error starting replication worker",e);