Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
fix(ingest/looker): support platform instance for dashboards & charts #10771
fix(ingest/looker): support platform instance for dashboards & charts #10771
Changes from 8 commits
ecacb05
8186bfe
e3adcd5
f9ba34d
579cd8e
79fad87
ae6c239
d229612
c530a4b
ddbf447
9240607
71a146c
ddb1ab7
ecca269
afad354
3692401
80b7e0e
1dd5802
02b3af0
7d64b7a
c950d3d
105d49f
6853a1a
37ad551
9b97cb7
efbf0cf
1cf0ff0
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Add a validator for consistency.
The field addition looks correct. However, a validator is needed to ensure consistency when
platform_instance
is set butinclude_looker_element_in_platform_instance
is not.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.
Avoid using
**urn_params
for better type-checking.Using
**urn_params
won't be type-checked properly. Instead, explicitly pass the parameters.Committable suggestion
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.
Consider refactoring
_make_chart_metadata_events
for readability and maintainability.The function is quite large and could benefit from breaking it down into smaller helper methods.
Committable suggestion
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.
Avoid using
**urn_params
for better type-checking.Using
**urn_params
won't be type-checked properly. Instead, explicitly pass the parameters.Committable suggestion
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.
Consider refactoring
_input_fields_from_dashboard_element
for readability and maintainability.The function is quite large and could benefit from breaking it down into smaller helper methods.
Committable suggestion