Skip to content

Commit

Permalink
Merge pull request #319 from triole/dev
Browse files Browse the repository at this point in the history
Rename config entry to restart_file_pattern
  • Loading branch information
ochinchina committed May 20, 2022
2 parents 75876f0 + e97702f commit 0f19fb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion process/process.go
Expand Up @@ -453,7 +453,7 @@ func (p *Process) setProgramRestartChangeMonitor(programPath string) {
})
}
dirMonitor := p.config.GetString("restart_directory_monitor", "")
filePattern := p.config.GetString("restart_filePattern", "*")
filePattern := p.config.GetString("restart_file_pattern", "*")
if dirMonitor != "" {
absDir, err := filepath.Abs(dirMonitor)
if err != nil {
Expand Down

0 comments on commit 0f19fb4

Please sign in to comment.