Skip to content

Commit

Permalink
renamed pid file
Browse files Browse the repository at this point in the history
  • Loading branch information
ivcosla committed Jun 13, 2019
1 parent bef39a8 commit fffb0b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ func (node *Node) dir() string {
}

func (node *Node) pidFile() *os.File {
f, err := os.OpenFile(filepath.Join(node.dir(), "apps.pid"), os.O_RDWR|os.O_CREATE, 0600)
f, err := os.OpenFile(filepath.Join(node.dir(), "apps-pid.txt"), os.O_RDWR|os.O_CREATE, 0600)
if err != nil {
panic(err)
}
Expand Down

0 comments on commit fffb0b3

Please sign in to comment.