Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
11977f4f
authored
2013-07-07 17:58:50 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix #90
1 parent
461eac46
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletions
beego.go
config.go
router.go
beego.go
View file @
11977f4
...
...
@@ -43,6 +43,7 @@ var (
DirectoryIndex
bool
//ebable DirectoryIndex default is false
EnbaleHotUpdate
bool
//enable HotUpdate default is false
HttpServerTimeOut
int64
ErrorsShow
bool
)
func
init
()
{
...
...
@@ -70,6 +71,7 @@ func init() {
StaticDir
[
"/static"
]
=
"static"
AppConfigPath
=
path
.
Join
(
AppPath
,
"conf"
,
"app.conf"
)
HttpServerTimeOut
=
0
ErrorsShow
=
true
ParseConfig
()
}
...
...
config.go
View file @
11977f4
...
...
@@ -183,6 +183,9 @@ func ParseConfig() (err error) {
if
timeout
,
err
:=
AppConfig
.
Int64
(
"httpservertimeout"
);
err
==
nil
{
HttpServerTimeOut
=
timeout
}
if
errorsshow
,
err
:=
AppConfig
.
Bool
(
"errorsshow"
);
err
==
nil
{
ErrorsShow
=
errorsshow
}
}
return
nil
}
...
...
router.go
View file @
11977f4
...
...
@@ -189,7 +189,7 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
defer
func
()
{
if
err
:=
recover
();
err
!=
nil
{
errstr
:=
fmt
.
Sprint
(
err
)
if
handler
,
ok
:=
ErrorMaps
[
errstr
];
ok
{
if
handler
,
ok
:=
ErrorMaps
[
errstr
];
ok
&&
ErrorsShow
{
handler
(
rw
,
r
)
}
else
{
if
!
RecoverPanic
{
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment