Skip to content

Commit

Permalink
bump network protocols versions (#1943)
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroxbt authored May 5, 2022
1 parent 03e197f commit de16245
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 0 additions & 2 deletions external/sparqlquery-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,9 @@ class SparqlqueryService {
type: 'sparql',
value: `${this.config.sparqlEndpointUpdate}`,
},
log: this.logger,
};
this.queryContext = {
sources,
log: this.logger,
};
}

Expand Down
12 changes: 6 additions & 6 deletions modules/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,12 @@ exports.STRINGIFIED_NETWORK_RESPONSES = {
* Network protocols
*/
exports.NETWORK_PROTOCOLS = {
STORE: '/store/1.0.0',
RESOLVE: '/resolve/1.0.0',
SEARCH: '/search/1.0.0',
SEARCH_RESULT: '/search/1.0.0/result',
SEARCH_ASSERTIONS: '/search/assertions/1.0.0',
SEARCH_ASSERTIONS_RESULT: '/search/assertions/1.0.0/result',
STORE: '/store/1.0.1',
RESOLVE: '/resolve/1.0.1',
SEARCH: '/search/1.0.1',
SEARCH_RESULT: '/search/1.0.1/result',
SEARCH_ASSERTIONS: '/search/assertions/1.0.1',
SEARCH_ASSERTIONS_RESULT: '/search/assertions/1.0.1/result',
};

/**
Expand Down

0 comments on commit de16245

Please sign in to comment.