We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Update the default implementation of the generate_alias_name macro to add a _v{version} suffix, when a model version is available.
generate_alias_name
_v{version}
version
The text was updated successfully, but these errors were encountered:
Will this need to be done in all/some of the adapters?
Sorry, something went wrong.
I'm envisioning logic like this, to replace what's there right now:
{% macro default__generate_alias_name(custom_alias_name=none, node=none) -%} {%- if custom_alias_name -%} {{ return(custom_alias_name | trim) }} {%- elif node.version -%} {{ return(node.name ~ "_v" ~ node.version) }} {%- else -%} {{ return(node.name) }} {%- endif -%} {%- endmacro %}
No changes needed in adapters.
Closing in favor of #7263
MichelleArk
No branches or pull requests
Update the default implementation of the
generate_alias_name
macro to add a_v{version}
suffix, when a modelversion
is available.The text was updated successfully, but these errors were encountered: