PR comment and better formatting
This commit is contained in:
parent
9f924400e0
commit
107c7a9ca7
|
@ -2524,7 +2524,15 @@ func (s *Store) updateGatewayServices(tx *memdb.Txn, idx uint64, conf structs.Co
|
|||
return nil
|
||||
}
|
||||
|
||||
func (s *Store) ingressConfigGatewayServices(tx *memdb.Txn, gateway structs.ServiceID, conf structs.ConfigEntry, entMeta *structs.EnterpriseMeta) (bool, structs.GatewayServices, error) {
|
||||
// ingressConfigGatewayServices constructs a list of GatewayService structs for
|
||||
// insertion into the memdb table, specific to ingress gateways. The boolean
|
||||
// returned indicates that there are no changes necessary to the memdb table.
|
||||
func (s *Store) ingressConfigGatewayServices(
|
||||
tx *memdb.Txn,
|
||||
gateway structs.ServiceID,
|
||||
conf structs.ConfigEntry,
|
||||
entMeta *structs.EnterpriseMeta,
|
||||
) (bool, structs.GatewayServices, error) {
|
||||
entry, ok := conf.(*structs.IngressGatewayConfigEntry)
|
||||
if !ok {
|
||||
return false, nil, fmt.Errorf("unexpected config entry type: %T", conf)
|
||||
|
@ -2560,7 +2568,16 @@ func (s *Store) ingressConfigGatewayServices(tx *memdb.Txn, gateway structs.Serv
|
|||
return false, gatewayServices, nil
|
||||
}
|
||||
|
||||
func (s *Store) terminatingConfigGatewayServices(tx *memdb.Txn, gateway structs.ServiceID, conf structs.ConfigEntry, entMeta *structs.EnterpriseMeta) (bool, structs.GatewayServices, error) {
|
||||
// terminatingConfigGatewayServices constructs a list of GatewayService structs
|
||||
// for insertion into the memdb table, specific to terminating gateways. The
|
||||
// boolean returned indicates that there are no changes necessary to the memdb
|
||||
// table.
|
||||
func (s *Store) terminatingConfigGatewayServices(
|
||||
tx *memdb.Txn,
|
||||
gateway structs.ServiceID,
|
||||
conf structs.ConfigEntry,
|
||||
entMeta *structs.EnterpriseMeta,
|
||||
) (bool, structs.GatewayServices, error) {
|
||||
entry, ok := conf.(*structs.TerminatingGatewayConfigEntry)
|
||||
if !ok {
|
||||
return false, nil, fmt.Errorf("unexpected config entry type: %T", conf)
|
||||
|
|
|
@ -4545,7 +4545,6 @@ func TestStateStore_GatewayServices_Terminating(t *testing.T) {
|
|||
}, nil))
|
||||
assert.False(t, watchFired(ws))
|
||||
|
||||
ws = memdb.NewWatchSet()
|
||||
idx, out, err = s.GatewayServices(ws, "gateway", nil)
|
||||
assert.Nil(t, err)
|
||||
assert.Equal(t, idx, uint64(21))
|
||||
|
|
Loading…
Reference in New Issue