fix(fsrepo): remove the Closer after closing it.

This commit is contained in:
Brian Tiger Chow 2015-01-13 20:43:35 -08:00
parent 6ec20b3574
commit 53e6a9bd1a

View File

@ -307,6 +307,7 @@ func transitionToClosed(r *FSRepo) error {
if err := closer.Close(); err != nil {
return err
}
delete(lockfiles, r.path)
}
return nil
}