diff --git a/cmd/barak/main.go b/cmd/barak/main.go index e270c3b7..d11a0c72 100644 --- a/cmd/barak/main.go +++ b/cmd/barak/main.go @@ -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