private Pipeline createFallbackPipeline(ServiceId svcId, PipelineMode pipelineMode)
      throws ServiceException {
    ClassLoader cl = Pipeline.class.getClassLoader();
    Pipeline result = new PipelineImpl();

    PipelineInitContextImpl initCtx = new PipelineInitContextImpl(svcId, pipelineMode, cl, null);
    result.init(initCtx);
    initCtx.kill();

    return result;
  }