You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2014/01/24 16:40:29 UTC

[1/3] git commit: ACCUMULO-2250 Move error logging in Fate.transitionToFailed to beginning of method

Updated Branches:
  refs/heads/master 349af6b94 -> 381555806


ACCUMULO-2250 Move error logging in Fate.transitionToFailed to beginning of method

Signed-off-by: Eric Newton <er...@gmail.com>


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

Branch: refs/heads/master
Commit: b85c8b5c1fcd05c79ac777fc9f2e4085dcbb1b71
Parents: 59680b3
Author: Vikram Srivastava <vi...@cloudera.com>
Authored: Fri Jan 24 01:38:44 2014 -0800
Committer: Eric Newton <er...@gmail.com>
Committed: Fri Jan 24 10:38:42 2014 -0500

----------------------------------------------------------------------
 fate/src/main/java/org/apache/accumulo/fate/Fate.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/b85c8b5c/fate/src/main/java/org/apache/accumulo/fate/Fate.java
----------------------------------------------------------------------
diff --git a/fate/src/main/java/org/apache/accumulo/fate/Fate.java b/fate/src/main/java/org/apache/accumulo/fate/Fate.java
index bd36edb..670154e 100644
--- a/fate/src/main/java/org/apache/accumulo/fate/Fate.java
+++ b/fate/src/main/java/org/apache/accumulo/fate/Fate.java
@@ -96,9 +96,11 @@ public class Fate<T> {
     }
     
     private void transitionToFailed(long tid, Repo<T> op, Exception e) {
+      String tidStr = String.format("%016x", tid);
+      log.warn("Failed to execute Repo, tid=" + tidStr, e);
       store.setProperty(tid, EXCEPTION_PROP, e);
       store.setStatus(tid, TStatus.FAILED_IN_PROGRESS);
-      log.warn("Failed to execute Repo, tid=" + String.format("%016x", tid), e);
+      log.info("Updated status for Repo with tid=" + tidStr + " to FAILED_IN_PROGRESS");
     }
     
     private void processFailed(long tid, Repo<T> op) {


[2/3] git commit: Merge branch '1.5.1-SNAPSHOT' into 1.6.0-SNAPSHOT

Posted by ec...@apache.org.
Merge branch '1.5.1-SNAPSHOT' into 1.6.0-SNAPSHOT


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

Branch: refs/heads/master
Commit: e4b177d16201ce6116e756bf60f0f7cc03c7699b
Parents: 930a6b8 b85c8b5
Author: Eric Newton <er...@gmail.com>
Authored: Fri Jan 24 10:39:16 2014 -0500
Committer: Eric Newton <er...@gmail.com>
Committed: Fri Jan 24 10:39:16 2014 -0500

----------------------------------------------------------------------

----------------------------------------------------------------------



[3/3] git commit: Merge branch '1.6.0-SNAPSHOT'

Posted by ec...@apache.org.
Merge branch '1.6.0-SNAPSHOT'


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

Branch: refs/heads/master
Commit: 381555806e80b1f8da43dde340ef21186b70ad14
Parents: 349af6b e4b177d
Author: Eric Newton <er...@gmail.com>
Authored: Fri Jan 24 10:40:14 2014 -0500
Committer: Eric Newton <er...@gmail.com>
Committed: Fri Jan 24 10:40:14 2014 -0500

----------------------------------------------------------------------

----------------------------------------------------------------------