-
Notifications
You must be signed in to change notification settings - Fork 2
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
[CDF-23514] 🎢 Inlined transformation #1286
Conversation
@@ -252,21 +274,6 @@ def load_resource( | |||
) | |||
except KeyError as e: | |||
raise ToolkitYAMLFormatError("authentication property is missing required fields", filepath, e) | |||
|
|||
query_file: Path | None = filepath.parent / Path(transformation.query or "") |
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.
This seems to have raised an OS
error on mac. Cannot recreate it on Windows.
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.
Anyways, it is a poor solution to overuse the query
key for both a path and an actual query. So introduced the queryFile
instead, and changed the logic to work on the raw dictionary.
☂️ Python Coverage
Overall Coverage
New FilesNo new covered files... Modified Files
|
Description
Please describe the change you have made.
Checklist
_version.py and
pyproject.toml per semantic versioning.