Merge pull request #12771 from runcom/say-bye-to-engine

Remove engine
This commit is contained in:
Tibor Vass 2015-04-30 12:18:16 -04:00
commit 2bbd2f8dd0

View file

@ -24,15 +24,15 @@ func checkPidFileAlreadyExists(path string) error {
return nil
}
func New(path string) (file *PidFile, err error) {
func New(path string) (*PidFile, error) {
if err := checkPidFileAlreadyExists(path); err != nil {
return nil, err
}
if err := ioutil.WriteFile(path, []byte(fmt.Sprintf("%d", os.Getpid())), 0644); err != nil {
return nil, err
}
file = &PidFile{path: path}
err = ioutil.WriteFile(path, []byte(fmt.Sprintf("%d", os.Getpid())), 0644)
return file, err
return &PidFile{path: path}, nil
}
func (file PidFile) Remove() error {