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

Fix regression when creating nested ConfigurableResource with pydantic >= v.2.5.0 #28949

Merged
merged 3 commits into from
Apr 3, 2025

Conversation

benpankow
Copy link
Member

@benpankow benpankow commented Apr 2, 2025

Summary

Slight tweak of @HynekBlaha's contribution in #28836 - this version adjusts our Pydantic union behavior for resources to account for a change in Pydantic 2.5.0 which uses 'smart unions' (pydantic/pydantic-core#867). This smart union behavior attempted to initialize each member of the union using the input data, which called the constructor for PartialResource with invalid inputs.

This PR enforces left-to-right union evaluation, similar to what occurred pre-Pydantic 2.5.0.

Test Plan

Unit test introduced in #28836.

Changelog

Fixed an issue where using partial resources in Pydantic >= 2.5.0 could result in an unexpected keyword argument TypeError. (Thanks @HynekBlaha!)

@benpankow benpankow changed the title Add test for covering regression on nested ConfigurableResource with pydantic >= v2.5.0 Fix regression when creating nested ConfigurableResource with pydantic >= v.2.5.0 Apr 2, 2025
@benpankow
Copy link
Member Author

This stack of pull requests is managed by Graphite. Learn more about stacking.

@benpankow benpankow force-pushed the benpankow/fix-nested-partial-resource-pydantic-25 branch from ef474ab to 6e059f5 Compare April 2, 2025 15:41
@@ -834,7 +834,7 @@ def _is_annotated_as_resource_type(annotation: type, metadata: list[str]) -> boo
"""Determines if a field in a structured config class is annotated as a resource type or not."""
from dagster._config.pythonic_config.type_check_utils import safe_is_subclass

if metadata and metadata[0] == "resource_dependency":
if metadata and any(m == "resource_dependency" for m in metadata):
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

union mode left_to_right ends up in this metadata list, bumping resource dependency to second

@benpankow benpankow force-pushed the benpankow/fix-nested-partial-resource-pydantic-25 branch from 3f96973 to 9902d58 Compare April 2, 2025 16:32
@deepyaman
Copy link
Contributor

Thanks @HynekBlaha @benpankow !

@benpankow benpankow merged commit 36977f4 into master Apr 3, 2025
4 of 5 checks passed
@benpankow benpankow deleted the benpankow/fix-nested-partial-resource-pydantic-25 branch April 3, 2025 15:28
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.

3 participants