Skip to content

Commit

Permalink
Readd handler for former events (#186)
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Steffen <[email protected]>
  • Loading branch information
jastBytes authored Jun 27, 2022
1 parent 743c323 commit 9d74679
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/domain/aggregates/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,8 @@ func (a *ClusterAggregate) ApplyEvent(event es.Event) error {
if len(data.GetCaCertificateBundle()) > 0 && !bytes.Equal(a.caCertBundle, data.GetCaCertificateBundle()) {
a.caCertBundle = data.GetCaCertificateBundle()
}
case events.ClusterBootstrapTokenCreated:
// IGNORED, not in use anymore
case events.ClusterDeleted:
a.SetDeleted(true)
default:
Expand Down

0 comments on commit 9d74679

Please sign in to comment.