Skip to content

Commit

Permalink
Add a few messages about probe progress. (#1306)
Browse files Browse the repository at this point in the history
  • Loading branch information
porridge authored Sep 27, 2023
1 parent 54711e0 commit 55c3fa8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions probe/pkg/probe/probe.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,12 @@ func (p *ProbeImpl) Execute(ctx context.Context) error {
if err != nil {
return err
}
glog.Info("central creation succeeded; proceeding with verification")

if err := p.verifyCentral(ctx, central); err != nil {
return err
}
glog.Info("central verification succeeded; proceeding with deletion")

return p.deleteCentral(ctx, central)
}
Expand Down Expand Up @@ -188,6 +190,7 @@ func (p *ProbeImpl) deleteCentral(ctx context.Context, centralRequest *public.Ce
if err != nil {
return errors.Wrapf(err, "central instance %s with status %s could not be deleted", centralRequest.Id, centralRequest.Status)
}
glog.Info("central deletion succeeded")
return nil
}

Expand Down

0 comments on commit 55c3fa8

Please sign in to comment.