panic on error

pull/370/head
John Shahid 2014-03-27 19:09:08 -04:00
parent 33414d7c5e
commit 40e7d08cc8
1 changed files with 3 additions and 1 deletions

View File

@ -100,7 +100,9 @@ func main() {
panic(err)
}
startProfiler(server)
if err := startProfiler(server); err != nil {
panic(err)
}
if *resetRootPassword {
// TODO: make this not suck