Skip to content
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

Make Subscription Source Type Optional #1107

Merged
merged 6 commits into from
Mar 20, 2025
Merged

Conversation

asonnenschein
Copy link
Contributor

This MR updates the Subscriptions SDK and CLI to make the subscription source type parameter optional. For catalog source subscriptions this is a simple change because the catalog source type was programmatically appended to the catalog source instead of requiring user input as a positional arg to catalog_source(). To make the catalog type optional then I simply removed the line in catalog_source() that appends catalog source type.

For planetary variable source subscriptions this change is a bit more difficult to make without introducing a breaking change, because the source type is variable and is the first required positional arg to planetary_variable_source(). To avoid the breaking change, I added a condition to planetary_variable_source() that checks if the var_type arg is None and only appends the source type if it is not None. This gives us the desired UX for the CLI which no longer requires the --var-type parameter, but keeps the positional var_type arg in planetary_variable_source().

Note - I did explore the possibility of making the positional var_type arg optional by counting the number of input args to planetary_variable_source(), checking their types, and inferring whether or not the user specified the var_type arg. While this does technically work, I think it would introduce an anti-pattern to the method because var_type is the first positional arg in the method.

@asonnenschein asonnenschein changed the title Draft: Make Subscription Source Type Optional Make Subscription Source Type Optional Mar 19, 2025
@asonnenschein asonnenschein merged commit 3781d4c into main Mar 20, 2025
9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants