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

SDAP-527 - Fixed creation of execution status Cassandra table #329

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion analysis/webservice/algorithms/doms/DomsInitialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ def createDomsExecutionsTable(self, session):
time_started timestamp,
time_completed timestamp,
user_email text,
status text
status text,
message text
);
"""
session.execute(cql)
Expand Down