Fix error message (change erroneous UPDATE to SELECT)
This commit is contained in:
parent
607ce353ce
commit
e7336ab019
1 changed files with 1 additions and 1 deletions
|
@ -304,7 +304,7 @@ public class RDFServiceSparql extends RDFServiceImpl implements RDFService {
|
||||||
if (statusCode > 399) {
|
if (statusCode > 399) {
|
||||||
log.error("response " + statusCode + " to query. \n");
|
log.error("response " + statusCode + " to query. \n");
|
||||||
log.debug("update string: \n" + queryStr);
|
log.debug("update string: \n" + queryStr);
|
||||||
throw new RDFServiceException("Unable to perform SPARQL UPDATE");
|
throw new RDFServiceException("Unable to perform SPARQL SELECT");
|
||||||
}
|
}
|
||||||
|
|
||||||
try (InputStream in = response.getEntity().getContent()) {
|
try (InputStream in = response.getEntity().getContent()) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue