Skip to content

Commit

Permalink
config: sepa endpoints default now are update and query
Browse files Browse the repository at this point in the history
  • Loading branch information
lroffia committed Jul 24, 2024
1 parent 5929c82 commit d30afe8
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ static private class Paths {
public String tokenRequest;

public Paths(){
update = "/sparql";
query = "/sparql";
update = "/update";
query = "/query";
subscribe = "/subscribe";
unsubscribe = "/unsubscribe";
register = "/oauth/register";
Expand Down Expand Up @@ -399,8 +399,8 @@ private void printUsage() {
System.out.println("parameters.scheduler.timeout : the timeout of scheduling new request (ms) (default: 5000)");
System.out.println("parameters.processor.updatetimeout : the timeout of updates (ms) (default: 5000)");
System.out.println("parameters.processor.querytimeout : the timeout of queries (ms) (default: 30000)");
System.out.println("parameters.gates.paths.update : the path of update HTTP requests (default: /sparql)");
System.out.println("parameters.gates.paths.query : the path of query HTTP requests (default: /sparql)");
System.out.println("parameters.gates.paths.update : the path of update HTTP requests (default: /update)");
System.out.println("parameters.gates.paths.query : the path of query HTTP requests (default: /query)");
System.out.println("parameters.gates.paths.subscribe: the path of subscribe websocket requests (default: /subscribe)");
System.out.println("parameters.gates.paths.unsubscribe: the path of unsubscribe websocket requests (default: /unsubscribe)");

Expand Down

0 comments on commit d30afe8

Please sign in to comment.