SolidLabResearch / LDES-in-SOLID-Semantic-Observations-Replay

1 stars 2 forks source link

Sort observations fails #13

Closed pheyvaer closed 1 year ago

pheyvaer commented 1 year ago
  1. I have downloaded the dataset_participant1.nt dataset.
  2. I loaded the dataset via
    curl http://localhost:3001/loadDataset?dataset=dataset_participant1.nt
  3. The loading size is 3591710.
  4. The observation count is 718342.
  5. When I ask to sort the observations via
    curl http://localhost:3001?sortObservations

    I get the following error

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8">
    <title>Error</title>
    </head>
    <body>
    <pre>Cannot GET /</pre>
    </body>
    </html>

    I don't see any errors in the CSS or the engine.

argahsuknesib commented 1 year ago

This issue should be fixed with the recent pull request, https://github.com/SolidLabResearch/LDES-in-SOLID-Semantic-Observations-Replay/pull/14/commits/452be12fc9fa8e5c6f0ac4c61df7e6c19706e4e1 as it was a typo.

It should be,

curl http://localhost:3001/sortObservations

instead of,

curl http://localhost:3001?sortObservations

@svrstich can you confirm and close the issue?

pheyvaer commented 1 year ago

Thanks! That works.