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

Issues/54: Handle cumulus_meta properly #57

Merged
merged 9 commits into from
Feb 12, 2025
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Deprecated
### Removed
### Fixed
- [issues/54](https://github.com/podaac/bignbit/issues/54): Fixed bug where status was not being reported to Cumulus Dashboard by adding `cumulus_meta` back into the output CMA.
### Security

## [0.2.3]
Expand Down
1 change: 1 addition & 0 deletions terraform/state_machine_definition.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,7 @@
"Type":"Pass",
"Next":"BuildImageSets",
"Parameters":{
"cumulus_meta.$": "$.cumulus_meta",
"meta": {
"buckets.$": "$.meta.buckets",
"cmr.$": "$.meta.cmr",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"cumulus_meta": {},
"meta": {
"provider": {},
"stack": {},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"cumulus_meta": {},
"meta": {
"provider": {},
"stack": {},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"cumulus_meta": {},
"meta": {
"provider": {},
"stack": {},
Expand Down
Loading