From 4d1df0ef9955b76a1c59bd63a955594229895560 Mon Sep 17 00:00:00 2001 From: John Simons Date: Wed, 5 Aug 2026 10:43:35 +1000 Subject: [PATCH] Remove the unused id from the recoverability history response Nothing reads it. LastTenOperations uses historic_operations only. It was the id of the RavenDB document ServiceControl kept the retry history in, and ServiceControl no longer returns it. --- src/Frontend/src/resources/RecoverabilityHistoryResponse.ts | 1 - src/Frontend/test/preconditions/recoverability.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/Frontend/src/resources/RecoverabilityHistoryResponse.ts b/src/Frontend/src/resources/RecoverabilityHistoryResponse.ts index b5c63e5f58..aad28aa395 100644 --- a/src/Frontend/src/resources/RecoverabilityHistoryResponse.ts +++ b/src/Frontend/src/resources/RecoverabilityHistoryResponse.ts @@ -2,7 +2,6 @@ import type HistoricRetryOperation from "./HistoricRetryOperation"; import type UnacknowledgedRetryOperation from "./UnacknowledgedRetryOperation"; export default interface RecoverabilityHistoryResponse { - id: string; historic_operations: HistoricRetryOperation[]; unacknowledged_operations: UnacknowledgedRetryOperation[]; } diff --git a/src/Frontend/test/preconditions/recoverability.ts b/src/Frontend/test/preconditions/recoverability.ts index 32bcb3feaa..b7b3fab30c 100644 --- a/src/Frontend/test/preconditions/recoverability.ts +++ b/src/Frontend/test/preconditions/recoverability.ts @@ -65,7 +65,6 @@ export const recoverabilityHistoryDefaultHandler = ({ driver }: SetupFactoryOpti const serviceControlUrl = window.defaultConfig.service_control_url; driver.mockEndpoint(`${serviceControlUrl}recoverability/history`, { body: { - id: "RetryOperations/History", historic_operations: [], unacknowledged_operations: [], },