chore: prevent node and pipe name clashing for vulnerability endpoints#3940
chore: prevent node and pipe name clashing for vulnerability endpoints#3940
Conversation
Signed-off-by: anil <epipav@gmail.com>
|
Your PR title doesn't contain a Jira issue key. Consider adding it for better traceability. Example:
Projects:
Please add a Jira issue key to your PR title. |
2 similar comments
|
Your PR title doesn't contain a Jira issue key. Consider adding it for better traceability. Example:
Projects:
Please add a Jira issue key to your PR title. |
|
Your PR title doesn't contain a Jira issue key. Consider adding it for better traceability. Example:
Projects:
Please add a Jira issue key to your PR title. |
There was a problem hiding this comment.
Pull request overview
Renames Tinybird pipe NODEs for vulnerability endpoints to avoid name collisions between the pipe (file) name and the primary endpoint node name.
Changes:
- Rename
NODE vulnerabilities_summary→NODE vulnerabilities_summary_result - Rename
NODE vulnerabilities_list→NODE vulnerabilities_list_result - Rename
NODE vulnerabilities_by_severity→NODE vulnerabilities_by_severity_result - Rename
NODE vulnerabilities_by_ecosystem→NODE vulnerabilities_by_ecosystem_result
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| services/libs/tinybird/pipes/vulnerabilities_summary.pipe | Renames the final endpoint node to *_result to avoid clashing with the pipe name. |
| services/libs/tinybird/pipes/vulnerabilities_list.pipe | Renames the endpoint node to *_result to avoid clashing with the pipe name. |
| services/libs/tinybird/pipes/vulnerabilities_by_severity.pipe | Renames the endpoint node to *_result to avoid clashing with the pipe name. |
| services/libs/tinybird/pipes/vulnerabilities_by_ecosystem.pipe | Renames the endpoint node to *_result to avoid clashing with the pipe name. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
Note
Low Risk
Low risk rename-only change to Tinybird pipe node identifiers; main risk is breaking any callers that still reference the old node names.
Overview
Renames Tinybird vulnerability pipe
NODEidentifiers to use a*_resultsuffix (e.g.,vulnerabilities_by_ecosystem_result,vulnerabilities_by_severity_result,vulnerabilities_list_result,vulnerabilities_summary_result) to prevent node/pipe naming collisions.Query logic and filters remain unchanged; only the output node names are updated.
Written by Cursor Bugbot for commit e66ef40. This will update automatically on new commits. Configure here.