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
perform_mongo_updates
TypeError
A bug was introduced in commit #620 that is leading to Dagster reporting the following error when the perform_mongo_updates op runs.
TypeError: _add_schema_docs_with_or_without_replacement() missing 2 required positional arguments: 'mongo' and 'docs'
This was originally reported by @pkalita-lbl here.
I think the error stems from line 531 in nmdc_runtime/site/ops.py lacking the two arguments that the function being called normally tries to use.
nmdc_runtime/site/ops.py
nmdc-runtime/nmdc_runtime/site/ops.py
Line 531 in 3fd7786
Lines 541 to 543 in 3fd7786
Based upon the surrounding code, I suspect the fix will look like this.
- add_docs_result = _add_schema_docs_with_or_without_replacement() + add_docs_result = _add_schema_docs_with_or_without_replacement(mongo, docs)
CC: @aclum
The text was updated successfully, but these errors were encountered:
Oy. I will fix and add test coverage for the body of perform_mongo_updates.
Sorry, something went wrong.
hotfix: op fails due to invalid helper method invocation
52818bf
for #631
hotfix: op fails due to invalid helper method invocation (#633)
f61f842
feat: test coverage for apply_metadata_in job
apply_metadata_in
3041542
closes #631
3820750
dwinston
PeopleMakeCulture
Successfully merging a pull request may close this issue.
A bug was introduced in commit #620 that is leading to Dagster reporting the following error when the
perform_mongo_updates
op runs.This was originally reported by @pkalita-lbl here.
I think the error stems from line 531 in
nmdc_runtime/site/ops.py
lacking the two arguments that the function being called normally tries to use.nmdc-runtime/nmdc_runtime/site/ops.py
Line 531 in 3fd7786
nmdc-runtime/nmdc_runtime/site/ops.py
Lines 541 to 543 in 3fd7786
Based upon the surrounding code, I suspect the fix will look like this.
CC: @aclum
The text was updated successfully, but these errors were encountered: