You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've tried to install qanary along some of the components available in Frankenstein system, and several of them fails at compilation time giving the following error (it currently happens with both versions of Qanary, this one and the one in the Frankenstein repository):
Qanary/qanary_monolitic-wrapper/src/main/java/eu/wdaqua/qanary/component/Monolitic.java:[83,22] no suitable method found for updateTripleStore(java.lang.String)
[ERROR] method eu.wdaqua.qanary.commons.QanaryUtils.updateTripleStore(java.lang.String,eu.wdaqua.qanary.business.QanaryConfigurator) is not applicable
[ERROR] (actual and formal argument lists differ in length)
[ERROR] method eu.wdaqua.qanary.commons.QanaryUtils.updateTripleStore(java.lang.String,java.lang.String) is not applicable
[ERROR] (actual and formal argument lists differ in length)
The text was updated successfully, but these errors were encountered:
Hi, I'm pretty sure you solved it at this point, but I will post the solution here for others.
The "updateTripleStore" function needs the SPARQL query plus the question's endpoint as arguments. I don't know when that change was implemented, but we had to fix it quite a lot to get the pipelines working. myQanaryUtils.updateTripleStore(sparql); // wrong myQanaryUtils.updateTripleStore(sparql, myQanaryQuestion.getEndpoint().toString()); // right
I've tried to install qanary along some of the components available in Frankenstein system, and several of them fails at compilation time giving the following error (it currently happens with both versions of Qanary, this one and the one in the Frankenstein repository):
Qanary/qanary_monolitic-wrapper/src/main/java/eu/wdaqua/qanary/component/Monolitic.java:[83,22] no suitable method found for updateTripleStore(java.lang.String)
[ERROR] method eu.wdaqua.qanary.commons.QanaryUtils.updateTripleStore(java.lang.String,eu.wdaqua.qanary.business.QanaryConfigurator) is not applicable
[ERROR] (actual and formal argument lists differ in length)
[ERROR] method eu.wdaqua.qanary.commons.QanaryUtils.updateTripleStore(java.lang.String,java.lang.String) is not applicable
[ERROR] (actual and formal argument lists differ in length)
The text was updated successfully, but these errors were encountered: