BUG-5280: define RetiredGenerationException
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / databroker / actors / dds / DistributedDataStoreClientBehavior.java
index 2b5e6753be25146015396036b656522df17f86ff..917e759a98ea6dab80a186e7edb20ea315a6bb44 100644 (file)
@@ -64,6 +64,11 @@ final class DistributedDataStoreClientBehavior extends ClientActorBehavior imple
     //
     //
 
+    @Override
+    protected void haltClient(final Throwable cause) {
+        // FIXME: Add state flushing here once we have state
+    }
+
     private void createLocalHistory(final CreateLocalHistoryCommand command) {
         final CompletableFuture<ClientLocalHistory> future = command.future();
         final LocalHistoryIdentifier historyId = new LocalHistoryIdentifier(getIdentifier(), nextHistoryId++);
@@ -80,7 +85,7 @@ final class DistributedDataStoreClientBehavior extends ClientActorBehavior imple
         } else if (command instanceof GetClientRequest) {
             ((GetClientRequest) command).getReplyTo().tell(new Status.Success(this), ActorRef.noSender());
         } else if (SHUTDOWN.equals(command)) {
-            // Add shutdown procedures here
+            // FIXME: Add shutdown procedures here
             return null;
         } else {
             LOG.warn("{}: ignoring unhandled command {}", persistenceId(), command);