Skip to content

Commit

Permalink
SDAP-527: Fixed creation of execution status Cassandra table (#329)
Browse files Browse the repository at this point in the history
Co-authored-by: rileykk <[email protected]>
  • Loading branch information
RKuttruff and rileykk authored Oct 16, 2024
1 parent ce14fa3 commit a8df58e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
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

0 comments on commit a8df58e

Please sign in to comment.