This is an automated email from the ASF dual-hosted git repository. rkk pushed a commit to branch SDAP-527 in repository https://gitbox.apache.org/repos/asf/sdap-nexus.git
commit 875fadd9eccb32e147bc4480fe13709148f4b343 Author: rileykk <[email protected]> AuthorDate: Tue Oct 15 21:33:42 2024 -0700 SDAP-527: Fixed creation of execution status Cassandra table --- CHANGELOG.md | 1 + analysis/webservice/algorithms/doms/DomsInitialization.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3601dfe..3e0db1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed ### Fixed - SDAP-525: Fixed expired AWS creds for Zarr datasets breaking list endpoint +- SDAP-527: Fixed incorrect initialization of `doms.doms_executions` Cassandra table, which broke `/matchup` endpoint for new installations. ### Security ## [1.3.0] - 2024-06-10 diff --git a/analysis/webservice/algorithms/doms/DomsInitialization.py b/analysis/webservice/algorithms/doms/DomsInitialization.py index a10a7e7..30b79b6 100644 --- a/analysis/webservice/algorithms/doms/DomsInitialization.py +++ b/analysis/webservice/algorithms/doms/DomsInitialization.py @@ -120,7 +120,8 @@ class DomsInitializer: time_started timestamp, time_completed timestamp, user_email text, - status text + status text, + message text ); """ session.execute(cql)
