We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you start the server with the default config:
npm i @solid/community-server ldes-solid-server wget https://github.com/rdf-connect/LDES-Solid-Server/blob/master/server/examples/config-ldes.json npx @solid/community-server -c config-ldes.json
The following error is given:
2024-05-16T12:28:00.457Z [Components.js] info: Discovered 169 component packages within 531 packages 2024-05-16T12:28:00.459Z [Components.js] info: Initiating component loading 2024-05-16T12:28:04.261Z [Components.js] info: Registered 907 components 2024-05-16T12:28:04.262Z [Components.js] info: Loaded configs Could not build the config files from ...config-ldes.json Error: Error while parsing file "/...config-ldes.json": Invalid predicate IRI: freshDuration
The reason is that in the view in the config, freshDuration is an argument to the constructor:
LDES-Solid-Server/server/examples/config-ldes.json
Line 90 in ac4ad7c
But in the SDS Mongo View, this is not the case:
LDES-Solid-Server/src/mongoDB/MongoSDS.ts
Lines 32 to 37 in ac4ad7c
It is however part of the constructor of the LDESStore (though it has a default, so it is not mandatory):
LDES-Solid-Server/src/LDESStore.ts
Lines 58 to 65 in ac4ad7c
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you start the server with the default config:
The following error is given:
The reason is that in the view in the config, freshDuration is an argument to the constructor:
LDES-Solid-Server/server/examples/config-ldes.json
Line 90 in ac4ad7c
But in the SDS Mongo View, this is not the case:
LDES-Solid-Server/src/mongoDB/MongoSDS.ts
Lines 32 to 37 in ac4ad7c
It is however part of the constructor of the LDESStore (though it has a default, so it is not mandatory):
LDES-Solid-Server/src/LDESStore.ts
Lines 58 to 65 in ac4ad7c
The text was updated successfully, but these errors were encountered: