-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
[CT-1162] Blueprint optional project ref statement parameter #5826
Comments
Related issues / PRs: |
Links to Existing Files (WIP)
|
Progress UpdateQuestion 1: What do we need to do to make
|
After your first answer to your open questions, let me know where I can help round out the answers |
Internal slack feedback for the first attempt in the related PR
|
My first inclination is that this will work if an upstream model has the same name as one in the current project. The reason being is how uniqueness is determined: def _check_resource_uniqueness(
manifest: Manifest,
config: RuntimeConfig,
) -> None:
names_resources: Dict[str, ManifestNode] = {}
alias_resources: Dict[str, ManifestNode] = {}
for resource, node in manifest.nodes.items(): This function iterates through the |
I really like @christineberger's suggestion in the original discussion where the developer explicitly defines what models to make public. As an aside, I think the default here is models:
# Model folder level
+shared: true
# Sub-folder level
staging:
+shared: false This configuration would share all models except for one's located in the |
I think the same compilation error that you would get today if I think you should treat it as web services treat private resources. For instance, I know the urls of private repos at my last company, but because I no longer have permission to view those, I'll receive 404s if I try directly navigating to those pages. They exist! But that doesn't mean I should have that information. |
Another implementation thought I had is to add some more properties to our I think the downstream impacts of this approach are much greater than the initial implementation proposed using a |
This issue has been marked as Stale because it has been open for 180 days with no activity. If you would like the issue to remain open, please comment on the issue or else it will be closed in 7 days. |
Although we are closing this issue as stale, it's not gone forever. Issues can be reopened if there is renewed community interest. Just add a comment to notify the maintainers. |
Success Criteria:
The text was updated successfully, but these errors were encountered: