Merge pull request #1334 from ElvizLai/patch-2

Update beego.go
This commit is contained in:
astaxie 2015-09-06 22:12:13 +08:00
commit 45b72b0674
1 changed files with 2 additions and 1 deletions

View File

@ -248,6 +248,8 @@ func AddAPPStartHook(hf hookfunc) {
// beego.Run(":8089")
// beego.Run("127.0.0.1:8089")
func Run(params ...string) {
initBeforeHttpRun()
if len(params) > 0 && params[0] != "" {
strs := strings.Split(params[0], ":")
if len(strs) > 0 && strs[0] != "" {
@ -257,7 +259,6 @@ func Run(params ...string) {
HttpPort, _ = strconv.Atoi(strs[1])
}
}
initBeforeHttpRun()
if EnableAdmin {
go beeAdminApp.Run()