Rename ID file to ".id" for consistency with existing data files.

This commit is contained in:
Cody Soyland 2018-05-02 15:04:12 -05:00
parent 437fcc5438
commit 18d7664fc4

View file

@ -524,7 +524,7 @@ func (h *Holder) setFileLimit() {
}
func (h *Holder) loadNodeID() (string, error) {
idPath := path.Join(h.Path, "ID")
idPath := path.Join(h.Path, ".id")
nodeID := ""
h.Logger.Printf("load NodeID: %s", idPath)
if err := os.MkdirAll(h.Path, 0777); err != nil {