Skip to content

Commit

Permalink
Fix digest parsing in replay_action when specifying an invocaion ID. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimberezniker authored Jan 14, 2025
1 parent e6ca607 commit d91fe6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enterprise/tools/replay_action/replay_action.go
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ func main() {
log.Fatalf("Could not retrieve invocation executions: %s", err)
}
for _, e := range rsp.Execution {
rn, err := digest.ParseDownloadResourceName(e.ExecutionId)
rn, err := digest.ParseUploadResourceName(e.ExecutionId)
if err != nil {
log.Fatalf("Invalid execution ID %q: %s", e.ExecutionId, err)
}
Expand Down

0 comments on commit d91fe6c

Please sign in to comment.