refactor: Delete dead crash recovery code (no-changelog) (#9512)

This commit is contained in:
Iván Ovejero
2024-05-27 13:55:52 +02:00
committed by GitHub
parent 49b5bd70f0
commit 008f62aaf4
5 changed files with 3 additions and 93 deletions

View File

@@ -45,10 +45,3 @@ export async function getDestinationsFromBackend(
export async function getExecutionEvents(context: IRestApiContext, executionId: string) {
return await makeRestApiRequest(context, 'GET', `/eventbus/execution/${executionId}`);
}
export async function recoverExecutionDataFromEvents(
context: IRestApiContext,
executionId: string,
) {
return await makeRestApiRequest(context, 'GET', `/eventbus/execution-recover/${executionId}`);
}