From 043834274d89663f11e97c545ff9ec74ff975a32 Mon Sep 17 00:00:00 2001 From: Pallavi Kumari Date: Mon, 6 Oct 2025 01:22:23 +0530 Subject: [PATCH] fix priority inside blueprints --- server/lib/blueprints/proxyResources.ts | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/server/lib/blueprints/proxyResources.ts b/server/lib/blueprints/proxyResources.ts index c142cdc0..bbfc260f 100644 --- a/server/lib/blueprints/proxyResources.ts +++ b/server/lib/blueprints/proxyResources.ts @@ -113,12 +113,9 @@ export async function updateProxyResources( internalPort: internalPortToCreate, path: targetData.path, pathMatchType: targetData["path-match"], -<<<<<<< HEAD rewritePath: targetData.rewritePath, - rewritePathType: targetData["rewrite-match"] -======= + rewritePathType: targetData["rewrite-match"], priority: targetData.priority ->>>>>>> b8d96345 (priority add for traefik config setup) }) .returning(); @@ -366,12 +363,9 @@ export async function updateProxyResources( enabled: targetData.enabled, path: targetData.path, pathMatchType: targetData["path-match"], -<<<<<<< HEAD rewritePath: targetData.rewritePath, - rewritePathType: targetData["rewrite-match"] -======= + rewritePathType: targetData["rewrite-match"], priority: targetData.priority ->>>>>>> b8d96345 (priority add for traefik config setup) }) .where(eq(targets.targetId, existingTarget.targetId)) .returning();