From cda158cadd494fb6ffae873196365615c635de65 Mon Sep 17 00:00:00 2001 From: Brad Ison Date: Fri, 7 Aug 2026 12:57:04 +0200 Subject: [PATCH] test(proxy): adopt the settings domain reshape in the full-chain test The proxy module's realstack test seeds agent_network_settings directly and was missed by the reshape sweep -- the only build failure CI's lint and test jobs caught. Co-Authored-By: Claude Fable 5 --- .../internal/proxy/agent_network_chain_realstack_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/proxy/internal/proxy/agent_network_chain_realstack_test.go b/proxy/internal/proxy/agent_network_chain_realstack_test.go index 924d37ace..12fab9e8c 100644 --- a/proxy/internal/proxy/agent_network_chain_realstack_test.go +++ b/proxy/internal/proxy/agent_network_chain_realstack_test.go @@ -73,8 +73,8 @@ func TestReverseProxy_AgentNetworkRequest_FullChain(t *testing.T) { testAdminUser = "user-admin-1" adminGroupID = "grp-admins" providerID = "prov-openai-test" - cluster = "test.proxy.local" - subdomain = "fullchain" + domain = "fullchain.test.proxy.local" + proxyAddress = "test.proxy.local" ) testLogger := log.New() testLogger.SetLevel(log.PanicLevel) // keep test output clean @@ -127,8 +127,8 @@ func TestReverseProxy_AgentNetworkRequest_FullChain(t *testing.T) { // increments on the response leg. require.NoError(t, st.SaveAgentNetworkSettings(ctx, &agentNetworkTypes.Settings{ AccountID: testAccountID, - Cluster: cluster, - Subdomain: subdomain, + Domain: domain, + ProxyAddress: proxyAddress, EnablePromptCollection: true, EnableLogCollection: true, RedactPii: true,