From de022e51c9b7e55a5147ac9b42735b924f7f1d12 Mon Sep 17 00:00:00 2001 From: Damon Kaswell Date: Tue, 22 Nov 2022 09:38:52 -0800 Subject: [PATCH] Group router paths in a less risky way Signed-off-by: Damon Kaswell --- plugins/incremental-ingestion-backend/src/router/paths.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/incremental-ingestion-backend/src/router/paths.ts b/plugins/incremental-ingestion-backend/src/router/paths.ts index 1be540fc10..2118177821 100644 --- a/plugins/incremental-ingestion-backend/src/router/paths.ts +++ b/plugins/incremental-ingestion-backend/src/router/paths.ts @@ -14,6 +14,6 @@ * limitations under the License. */ -export const PROVIDER_CLEANUP = '/providers/cleanup'; -export const PROVIDER_HEALTH = '/providers/health'; -export const PROVIDER_BASE_PATH = '/providers/:provider'; +export const PROVIDER_CLEANUP = '/incremental/cleanup'; +export const PROVIDER_HEALTH = '/incremental/health'; +export const PROVIDER_BASE_PATH = '/incremental/providers/:provider';