This is an automated email from the ASF dual-hosted git repository.
rkk pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/sdap-nexus.git
The following commit(s) were added to refs/heads/develop by this push:
new a8df58e SDAP-527: Fixed creation of execution status Cassandra table
(#329)
a8df58e is described below
commit a8df58e015d1fe1a5aff83c5ebfcfadad18ba790
Author: Riley Kuttruff <[email protected]>
AuthorDate: Tue Oct 15 22:19:23 2024 -0700
SDAP-527: Fixed creation of execution status Cassandra table (#329)
Co-authored-by: rileykk <[email protected]>
---
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)