You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tephra.apache.org by po...@apache.org on 2016/05/11 20:15:53 UTC

[53/56] [abbrv] incubator-tephra git commit: Update operation attribute key names

Update operation attribute key names


Project: http://git-wip-us.apache.org/repos/asf/incubator-tephra/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tephra/commit/d038cb30
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tephra/tree/d038cb30
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tephra/diff/d038cb30

Branch: refs/heads/master
Commit: d038cb300ac603ae103eb1ae060aa84e3e9d7eb6
Parents: 26ca8e1
Author: poorna <po...@cask.co>
Authored: Fri May 6 17:24:45 2016 -0700
Committer: poorna <po...@cask.co>
Committed: Fri May 6 17:24:45 2016 -0700

----------------------------------------------------------------------
 tephra-core/src/main/java/org/apache/tephra/TxConstants.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tephra/blob/d038cb30/tephra-core/src/main/java/org/apache/tephra/TxConstants.java
----------------------------------------------------------------------
diff --git a/tephra-core/src/main/java/org/apache/tephra/TxConstants.java b/tephra-core/src/main/java/org/apache/tephra/TxConstants.java
index 7f7fc8c..d962486 100644
--- a/tephra-core/src/main/java/org/apache/tephra/TxConstants.java
+++ b/tephra-core/src/main/java/org/apache/tephra/TxConstants.java
@@ -86,13 +86,13 @@ public class TxConstants {
   /**
    * Key used to set the serialized transaction as an attribute on Get and Scan operations.
    */
-  public static final String TX_OPERATION_ATTRIBUTE_KEY = "cask.tx";
+  public static final String TX_OPERATION_ATTRIBUTE_KEY = "tephra.tx";
   /**
    * Key used to flag a delete operation as part of a transaction rollback.  This is used so that the
    * {@code TransactionProcessor} coprocessor loaded on a table can differentiate between deletes issued
    * as part of a normal client operation versus those performed when rolling back a transaction.
    */
-  public static final String TX_ROLLBACK_ATTRIBUTE_KEY = "cask.tx.rollback";
+  public static final String TX_ROLLBACK_ATTRIBUTE_KEY = "tephra.tx.rollback";
 
   /**
    * Column qualifier used for a special delete marker tombstone, which identifies an entire column family as deleted.