BUG 5697 : Consumer support in shards
[mdsal.git] / dom / mdsal-dom-inmemory-datastore / src / main / java / org / opendaylight / mdsal / dom / store / inmemory / ShardCanCommitCoordinationTask.java
index 9c2f5a02f779b25bfd676def28fd0e7c426f201a..766650a3301594310ddf4aa19a4707b0dba10b56 100644 (file)
@@ -51,7 +51,7 @@ class ShardCanCommitCoordinationTask implements Callable<Boolean> {
             try {
                 final Boolean result = (Boolean)canCommit.get();
                 if (result == null || !result) {
-                    throw new TransactionCommitFailedException("Can Commit failed, no detailed cause available.");
+                    throw new TransactionCommitFailedException("CanCommit failed, no detailed cause available.");
                 }
             } catch (InterruptedException | ExecutionException e) {
                 throw new TransactionCommitFailedException("CanCommit failed", e);