-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Rename localhost to 127.0.0.1 #9
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think changing identifiers might break some pipelines in development using those exact config files.
Also, shouldn't the other two configurations also be altered?
- https://github.com/TREEcg/LDES-Solid-Server/blob/master/server/examples/config-ldes-ts.json
- https://github.com/TREEcg/LDES-Solid-Server/blob/master/server/examples/config-ldes-file_locks.json
Furthermore, I don't think the issue itself would be fixed with this PR.
While the database connection would be fixed, the building in windows itself is not (It seems to be componentsjs related).
@@ -75,7 +75,7 @@ | |||
"prefix": "default", | |||
"view": { | |||
"@type": "MongoSDSView", | |||
"descriptionId": "http://localhost:3000/ldes/#timestampFragmentation", | |||
"descriptionId": "http://127.0.0.1:3000/ldes/#timestampFragmentation", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an identifier, so I don't think it makes sense to change it to 127.0.0.1.
@@ -75,7 +75,7 @@ | |||
"prefix": "default", | |||
"view": { | |||
"@type": "MongoSDSView", | |||
"descriptionId": "http://localhost:3000/ldes/#timestampFragmentation", | |||
"descriptionId": "http://127.0.0.1:3000/ldes/#timestampFragmentation", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment as previous so I don't think it makes sense to change it to 127.0.0.1.
@@ -88,7 +88,7 @@ | |||
"prefix": "indexed", | |||
"view": { | |||
"@type": "MongoSDSView", | |||
"descriptionId": "http://localhost:3000/ldes/#timestampFragmentation", | |||
"descriptionId": "http://127.0.0.1:3000/ldes/#timestampFragmentation", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment as previous so I don't think it makes sense to change it to 127.0.0.1.
Fix #7