Browse Source

create registry.log if not there.

pull/67/head
Jae Kwon 10 years ago
parent
commit
9babda1d7a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cmd/barak/main.go

+ 1
- 1
cmd/barak/main.go View File

@ -276,7 +276,7 @@ func ListProcesses() (*ResponseListProcesses, error) {
// Another barak instance registering its external
// address to a remote barak.
func Register(w http.ResponseWriter, req *http.Request) {
registry, err := os.OpenFile(barak.rootDir+"/registry.log", os.O_RDWR|os.O_APPEND, 0x600)
registry, err := os.OpenFile(barak.rootDir+"/registry.log", os.O_RDWR|os.O_APPEND|os.O_CREATE, 0x600)
if err != nil {
http.Error(w, "Could not open registry file. Please contact the administrator", 500)
return


Loading…
Cancel
Save