From 18d7664fc43cf2148a6c6c15557ade6574a289b7 Mon Sep 17 00:00:00 2001 From: Cody Soyland Date: Wed, 2 May 2018 15:04:12 -0500 Subject: [PATCH] Rename ID file to ".id" for consistency with existing data files. --- holder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/holder.go b/holder.go index 7649caeba..d0a242ca5 100644 --- a/holder.go +++ b/holder.go @@ -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 {