Skip to content

Commit

Permalink
Merge pull request #574 from nationalarchives/fix/remove-uuid-prefix
Browse files Browse the repository at this point in the history
Fix/remove UUID prefix
  • Loading branch information
dragon-dxw authored Apr 2, 2024
2 parents 60b5958 + c18910d commit cea8b14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog 1.0.0].

## Unreleased
- Remove fcl_ex_id_ prefix from UUID of reparse execution ID

## [Release 22.1.0]

Expand Down
2 changes: 1 addition & 1 deletion src/caselawclient/models/utilities/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def request_parse(
.replace("+00:00", "Z"),
"function": "fcl-judgment-parse-request",
"producer": "FCL",
"executionId": f"fcl_ex_id_{uuid.uuid4()}",
"executionId": str(uuid.uuid4()),
"parentExecutionId": None,
},
"parameters": {
Expand Down

0 comments on commit cea8b14

Please sign in to comment.