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

Update Orchestration to Account for Update to Save FHIR Endpoint #2554

Merged
merged 31 commits into from
Sep 17, 2024
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1317f7b
Add metadata to save fhir data api
JNygaard-Skylight Aug 28, 2024
9842163
Merge branch 'main' into josh/update-ecr-save-to-inclide-metadata
JNygaard-Skylight Aug 29, 2024
10a0a77
More detailed error handling
JNygaard-Skylight Aug 29, 2024
c16dd35
Add metadata saving to S3 saving
JNygaard-Skylight Sep 4, 2024
1d282dc
Merge branch 'main' into josh/update-ecr-save-to-inclide-metadata
JNygaard-Skylight Sep 4, 2024
8677daf
Move metadata to new endpoint
JNygaard-Skylight Sep 5, 2024
3c55b91
Merge branch 'main' into josh/update-ecr-save-to-inclide-metadata
JNygaard-Skylight Sep 5, 2024
55bd0a6
Revert changes to save fhir data route
JNygaard-Skylight Sep 5, 2024
afa560a
Merge branch 'josh/update-ecr-save-to-inclide-metadata' of github.com…
joshnygaard Sep 5, 2024
859b8f3
Update error messages to include Azure
JNygaard-Skylight Sep 5, 2024
bb592a8
Remove S3, Azure saving for metadata.
JNygaard-Skylight Sep 6, 2024
a905835
Add metadata endpoint to the fhir data save endpoint
JNygaard-Skylight Sep 11, 2024
841ed78
Update a couple of tests
JNygaard-Skylight Sep 11, 2024
0cd6c88
Update status code in test
JNygaard-Skylight Sep 11, 2024
7d88e19
Merge branch 'main' into josh/update-ecr-save-to-inclide-metadata
JNygaard-Skylight Sep 11, 2024
97c8f3d
Update save-fhir-data in Orchestration
JNygaard-Skylight Sep 11, 2024
bdd3b12
Add metadata to save fhir data api
JNygaard-Skylight Aug 28, 2024
4ed16a5
More detailed error handling
JNygaard-Skylight Aug 29, 2024
c14b74f
Add metadata saving to S3 saving
JNygaard-Skylight Sep 4, 2024
6bb9c66
Move metadata to new endpoint
JNygaard-Skylight Sep 5, 2024
e05ff73
Revert changes to save fhir data route
JNygaard-Skylight Sep 5, 2024
2899810
Update error messages to include Azure
JNygaard-Skylight Sep 5, 2024
53899e8
Remove S3, Azure saving for metadata.
JNygaard-Skylight Sep 6, 2024
0b627db
Add metadata endpoint to the fhir data save endpoint
JNygaard-Skylight Sep 11, 2024
d80049e
Update a couple of tests
JNygaard-Skylight Sep 11, 2024
0dbfda7
Update status code in test
JNygaard-Skylight Sep 11, 2024
d7de718
Update save-fhir-data in Orchestration
JNygaard-Skylight Sep 11, 2024
5536e82
Merge branch 'josh/save-metadata-in-orchestration' of github.com-jnyg…
joshnygaard Sep 13, 2024
0c54db3
Merge branch 'main' into josh/save-metadata-in-orchestration
JNygaard-Skylight Sep 13, 2024
ec845a9
Revert some changes from old branch
JNygaard-Skylight Sep 13, 2024
6987f54
Merge branch 'josh/save-metadata-in-orchestration' of github.com-jnyg…
joshnygaard Sep 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ def build_save_fhir_data_body(
"workflow_params": workflow_params,
},
):
return {
request = {
"fhirBundle": input_msg,
"saveSource": workflow_params.get("saveSource"),
}

if workflow_params.get("metadata") is not None:
request["metadata"] = workflow_params.get("metadata")

return request
Loading