Fix ENT drift in files (#13647)

This commit is contained in:
Chris S. Kim 2022-06-29 16:53:22 -04:00 committed by GitHub
parent 57d0be42b9
commit 0dc1b11e42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View File

@ -1256,7 +1256,6 @@ func registerLocalAndRemoteServicesVIPEnabled(t *testing.T, state *state.Store)
Proxy: structs.ConnectProxyConfig{
DestinationServiceName: "web",
},
LocallyRegisteredAsSidecar: true,
},
PeerName: "peer-a",
}))
@ -1292,7 +1291,6 @@ func registerLocalAndRemoteServicesVIPEnabled(t *testing.T, state *state.Store)
Proxy: structs.ConnectProxyConfig{
DestinationServiceName: "web",
},
LocallyRegisteredAsSidecar: true,
},
PeerName: "peer-b",
}))

View File

@ -2787,15 +2787,13 @@ func TestInternal_PeeredUpstreams(t *testing.T) {
testrpc.WaitForLeader(t, s1.RPC, "dc1")
state := s1.fsm.State()
// Services
// api local
// web peer: peer-a
// web-proxy peer: peer-a
// web peer: peer-b
// web-proxy peer: peer-b
registerLocalAndRemoteServicesVIPEnabled(t, state)
registerLocalAndRemoteServicesVIPEnabled(t, s1.fsm.State())
codec := rpcClient(t, s1)