Skip to content

Commit

Permalink
fix: delete expired affiliates from the discovery service
Browse files Browse the repository at this point in the history
See siderolabs/discovery-service#20

Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
  • Loading branch information
smira committed Oct 12, 2021
1 parent 877a2b6 commit 31b6e39
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Expand Up @@ -73,7 +73,7 @@ require (
github.com/spf13/cobra v1.2.1
github.com/stretchr/testify v1.7.0
github.com/talos-systems/crypto v0.3.4
github.com/talos-systems/discovery-service v0.1.0
github.com/talos-systems/discovery-service v0.1.1
github.com/talos-systems/go-blockdevice v0.2.4
github.com/talos-systems/go-cmd v0.1.0
github.com/talos-systems/go-debug v0.2.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Expand Up @@ -1042,8 +1042,8 @@ github.com/syndtr/gocapability v0.0.0-20180916011248-d98352740cb2/go.mod h1:hkRG
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww=
github.com/talos-systems/crypto v0.3.4 h1:bg4N27CH1MvUBasr70BlZObPXQYEhUTwOOm/jhCRFxg=
github.com/talos-systems/crypto v0.3.4/go.mod h1:xaNCB2/Bxaj+qrkdeodhRv5eKQVvKOGBBMj58MrIPY8=
github.com/talos-systems/discovery-service v0.1.0 h1:mfFElRIetj6+rit+WnrKjSZMA0CTzUesSVJhqLSnddk=
github.com/talos-systems/discovery-service v0.1.0/go.mod h1:+9VWFbTcUChtlE0qc2fQ3Lyj1kj2AakFQ/ITnaB8Pd0=
github.com/talos-systems/discovery-service v0.1.1 h1:GCCRnLT0GzJiU1l55WsiaNHDc88+wi7YZMsLaOT7uhY=
github.com/talos-systems/discovery-service v0.1.1/go.mod h1:7o4Fo240P3e2Bo7vZZ+4d/sykqPYI8LTtXCgjKgbqo4=
github.com/talos-systems/go-blockdevice v0.2.4 h1:/E5I95byCxfdmQIiBEyWgdUo+6vPBbbOJQIF9+yeysU=
github.com/talos-systems/go-blockdevice v0.2.4/go.mod h1:qnn/zDc09I1DA2BUDDCOSA2D0P8pIDjN8pGiRoRaQig=
github.com/talos-systems/go-cmd v0.0.0-20210216164758-68eb0067e0f0/go.mod h1:kf+rZzTEmlDiYQ6ulslvRONnKLQH8x83TowltGMhO+k=
Expand Down
Expand Up @@ -60,7 +60,7 @@ func setupServer(t *testing.T) (address string) {
}

s := grpc.NewServer(serverOptions...)
serverpb.RegisterClusterServer(s, server.NewTestClusterServer())
serverpb.RegisterClusterServer(s, server.NewTestClusterServer(logger))

go func() {
require.NoError(t, s.Serve(lis))
Expand Down

0 comments on commit 31b6e39

Please sign in to comment.