fix typos in log statements.
This commit is contained in:
parent
7b94399f9e
commit
6e6b1ec89d
@ -408,14 +408,14 @@ func (w *Wrapper) Close() error {
|
|||||||
// Close the DAG store
|
// Close the DAG store
|
||||||
log.Info("will close the dagstore")
|
log.Info("will close the dagstore")
|
||||||
if err := w.dagst.Close(); err != nil {
|
if err := w.dagst.Close(); err != nil {
|
||||||
return xerrors.Errorf("failed to close DAG store: %w", err)
|
return xerrors.Errorf("failed to close dagstore: %w", err)
|
||||||
}
|
}
|
||||||
log.Info("dagstore closed")
|
log.Info("dagstore closed")
|
||||||
|
|
||||||
// Wait for the background go routine to exit
|
// Wait for the background go routine to exit
|
||||||
log.Info("waiting for dagstore background wrapper routines to exist")
|
log.Info("waiting for dagstore background wrapper goroutines to exit")
|
||||||
w.backgroundWg.Wait()
|
w.backgroundWg.Wait()
|
||||||
log.Info("exited dagstore background warpper routines")
|
log.Info("exited dagstore background wrapper goroutines")
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user