You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2017/06/02 08:12:25 UTC

[1/2] jena git commit: Add debug on PUT/POST path.

Repository: jena
Updated Branches:
  refs/heads/master 3b3ba3748 -> 44d424a4d


Add debug on PUT/POST path.

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

Branch: refs/heads/master
Commit: 2934f47e046392f61b7767b2dba0d8a8be2829c6
Parents: 3b3ba37
Author: Andy Seaborne <an...@apache.org>
Authored: Thu Jun 1 15:51:59 2017 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Fri Jun 2 09:08:37 2017 +0100

----------------------------------------------------------------------
 .../java/org/apache/jena/fuseki/servlets/SPARQL_GSP_RW.java   | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/2934f47e/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/SPARQL_GSP_RW.java
----------------------------------------------------------------------
diff --git a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/SPARQL_GSP_RW.java b/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/SPARQL_GSP_RW.java
index 84ad9f6..f410efb 100644
--- a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/SPARQL_GSP_RW.java
+++ b/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/SPARQL_GSP_RW.java
@@ -115,12 +115,11 @@ public class SPARQL_GSP_RW extends SPARQL_GSP_R
      */
     protected static UploadDetails addDataIntoTxn(HttpAction action, boolean overwrite) {   
         action.beginWrite();
-        Target target = determineTarget(action) ;
-        boolean existedBefore = false ;
         try {
+            Target target = determineTarget(action) ;
             if ( action.log.isDebugEnabled() )
-                action.log.debug("  ->"+target) ;
-            existedBefore = target.exists() ;
+                action.log.debug(action.request.getMethod().toUpperCase()+"->"+target) ;
+            boolean existedBefore = target.exists() ;
             Graph g = target.graph() ;
             if ( overwrite && existedBefore )
                 clearGraph(target) ;


[2/2] jena git commit: JENA-1353: Update slf4j 1.7.21->1.7.25

Posted by an...@apache.org.
JENA-1353: Update slf4j 1.7.21->1.7.25


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

Branch: refs/heads/master
Commit: 44d424a4dec08fc5998aeb7e6b8880f5f3fb49a2
Parents: 2934f47
Author: Andy Seaborne <an...@apache.org>
Authored: Fri Jun 2 09:11:00 2017 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Fri Jun 2 09:11:00 2017 +0100

----------------------------------------------------------------------
 jena-parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/44d424a4/jena-parent/pom.xml
----------------------------------------------------------------------
diff --git a/jena-parent/pom.xml b/jena-parent/pom.xml
index ce700f2..d6c3c0a 100644
--- a/jena-parent/pom.xml
+++ b/jena-parent/pom.xml
@@ -47,7 +47,7 @@
   </organization>
 
   <properties>
-    <ver.slf4j>1.7.21</ver.slf4j>
+    <ver.slf4j>1.7.25</ver.slf4j>
     <ver.log4j>1.2.17</ver.log4j>
     <ver.junit>4.12</ver.junit>
     <ver.xerces>2.11.0</ver.xerces>