X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fyang%2Fconfig%2Factor_system_provider%2Fimpl%2Ffactory%2Fosgi%2FQuarantinedMonitorActorPropsFactory.java;fp=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fyang%2Fconfig%2Factor_system_provider%2Fimpl%2Ffactory%2Fosgi%2FQuarantinedMonitorActorPropsFactory.java;h=348241d358eac29680796e037eb69b4327d9ffac;hp=0000000000000000000000000000000000000000;hb=88620eacdbb3a8e4b8c3114f0628ff95a5c8b5f6;hpb=30535bcc4c2770cb8500469fe40bdfb37d8ade4d diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/config/yang/config/actor_system_provider/impl/factory/osgi/QuarantinedMonitorActorPropsFactory.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/config/yang/config/actor_system_provider/impl/factory/osgi/QuarantinedMonitorActorPropsFactory.java new file mode 100644 index 0000000000..348241d358 --- /dev/null +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/config/yang/config/actor_system_provider/impl/factory/osgi/QuarantinedMonitorActorPropsFactory.java @@ -0,0 +1,27 @@ +/* + * Copyright (c) 2017 Pantheon Technologies s.r.o. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ +package org.opendaylight.controller.config.yang.config.actor_system_provider.impl.factory.osgi; + +import akka.actor.Props; +import org.opendaylight.controller.cluster.common.actor.QuarantinedMonitorActor; +import org.osgi.framework.BundleContext; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +public class QuarantinedMonitorActorPropsFactory { + private static final Logger LOG = LoggerFactory.getLogger(QuarantinedMonitorActorPropsFactory.class); + + public static Props createProps(final BundleContext bundleContext) { + return QuarantinedMonitorActor.props(() -> { + // restart the entire karaf container + LOG.warn("Restarting karaf container"); + System.setProperty("karaf.restart.jvm", "true"); + bundleContext.getBundle().stop(); + }); + } +}