Skip to content

Commit

Permalink
Update system_supervisor.go
Browse files Browse the repository at this point in the history
fix spelling

Signed-off-by: Kevin Hoffman <[email protected]>
  • Loading branch information
autodidaddict authored Oct 24, 2024
1 parent 3e6bebd commit e55725d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actors/system_supervisor.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ func (s *systemSupervisor) PreStart(context.Context) error {
func (s *systemSupervisor) Receive(ctx *ReceiveContext) {
switch ctx.Message().(type) {
case *goaktpb.PostStart:
s.logger.Info("system supervior successfully started")
s.logger.Info("system supervisor successfully started")
default:
ctx.Unhandled()
}
}

func (s *systemSupervisor) PostStop(context.Context) error {
s.logger.Info("system supervior stopped")
s.logger.Info("system supervisor stopped")
return nil
}

0 comments on commit e55725d

Please sign in to comment.