From: Bryan T. <br...@sy...> - 2015-02-22 17:25:33
|
There was a CI deadlock in the setup for this test. I have not seen this before. I killed that CI job and CI is now continuing. Both test6 and test7 have been acting up a little lately. They involve the semantics of the SILENT keyword (ignore errors) and some bad end points (do not exist). We might be hitting a difference with the new jetty client which has a different timeout for HTTP requests. But that would not explain the issue with the test fixture setup. # test6 # SERVICE with one optional and a nested SERVICE. This query depends in the capabilities of the example1.org endpoint PREFIX : <http://example.org/> SELECT ?s ?o1 ?o2 { SERVICE <http://localhost:18080/openrdf/repositories/endpoint1> { ?s ?p ?o1 . OPTIONAL { SERVICE SILENT <http://invalid.endpoint.org/sparql> { ?s ?p2 ?o2 } } } } # test7 # invalid URI for a SERVICE with SILENT PREFIX : <http://example.org/> SELECT ?s ?o1 ?o2 { ?s ?p ?o1 . SERVICE SILENT <http://invalid.endpoint.org/sparql> { ?s ?p2 ?o2 } } Thanks, Bryan |