-
Notifications
You must be signed in to change notification settings - Fork 557
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
Sanitize temporary node name used in rdf_loader #2386
base: main
Are you sure you want to change the base?
Conversation
2352679
to
8fa3c41
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2386 +/- ##
==========================================
- Coverage 50.99% 50.34% -0.65%
==========================================
Files 387 385 -2
Lines 32308 31801 -507
==========================================
- Hits 16473 16007 -466
+ Misses 15835 15794 -41 ☔ View full report in Codecov by Sentry. |
I'm not following. What's wrong with the node name in rdf_loader in particular? The code doesn't look like it's producing invalid names to me. |
@henningkayser For example, In the current code, such a parameter name is directly used in the node name, and the node cannot be started because of this. |
thanks for the pointers. What part of the node name in particular has an invalid character? Is it |
@henningkayser Yes, exactly. |
@henningkayser Hi! I really appreciate your review! |
@henningkayser Friendly ping! cc: @DLu |
Is there no more-central resource for santizing names? It seems odd to have to do the same thing in each package. |
@DLu
Agreed, and there are none as far as I could find. I do not think that this simple fix is worth waiting for years. While this specific usage of the node name is rare, it should be reasonable to have it fixed now and get replaced by the "more-central resource" afterwards. |
This PR is stale because it has been open for 45 days with no activity. Please tag a maintainer for help on completing this PR, or close it if you think it has become obsolete. |
This PR is stale because it has been open for 45 days with no activity. Please tag a maintainer for help on completing this PR, or close it if you think it has become obsolete. |
This pull request is in conflict. Could you fix it @tokoro10g? |
Description
Names of parameters do not have naming rules yet, whereas those for nodes do.
Therefore the temporary node name containing the parameter name must be sanitized.
Checklist