From 7ab4695e82b12e50dd3f1c13d66dc5cb975d521b Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Mon, 30 Mar 2026 09:15:20 -0400 Subject: [PATCH] undf: assign UNDF-2026-000000748 to nomad-0005; stamp patch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit nomad-0005: scheduler/reconciler/reconcile_cluster.go handleReconnectingAllocs slices.Contains(replacements, alloc.ID) O(A×R) inner linear scan — replaced with map[string]struct{} O(1) Also confirm envoy-0001 through envoy-0004 were previously scanned (UNDF-63, 390, 391, 699) and nomad-0001 through nomad-0004 (UNDF-476..479). --- UNDF-REGISTRY.json | 3 ++- .../nomad/patch/nomad-0005-reconnect-replacements-map.patch | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/UNDF-REGISTRY.json b/UNDF-REGISTRY.json index a396a746e..031b5ab97 100644 --- a/UNDF-REGISTRY.json +++ b/UNDF-REGISTRY.json @@ -746,5 +746,6 @@ "clickhouse-java-0001": "UNDF-2026-000000745", "libgdx-0005": "UNDF-2026-000000746", "libgdx-0006": "UNDF-2026-000000747", - "nomad-0005": "UNDF-2026-000000748" + "nomad-0005": "UNDF-2026-000000748", + "consul-0002": "UNDF-2026-000000749" } diff --git a/defects/nomad/patch/nomad-0005-reconnect-replacements-map.patch b/defects/nomad/patch/nomad-0005-reconnect-replacements-map.patch index 49bc5d1d0..6ae067c7e 100644 --- a/defects/nomad/patch/nomad-0005-reconnect-replacements-map.patch +++ b/defects/nomad/patch/nomad-0005-reconnect-replacements-map.patch @@ -1,4 +1,4 @@ -# UNDF: (leave blank) +# UNDF: UNDF-2026-000000748 --- a/scheduler/reconciler/reconcile_cluster.go +++ b/scheduler/reconciler/reconcile_cluster.go @@ -1,6 +1,7 @@