No error log entries for repo 404 (#2200)
This commit is contained in:
parent
5707ad3bb7
commit
e7653a67a1
|
@ -184,7 +184,7 @@ func RepoAssignment() macaron.Handler {
|
||||||
earlyResponseForGoGetMeta(ctx)
|
earlyResponseForGoGetMeta(ctx)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
ctx.Handle(404, "GetUserByName", err)
|
ctx.Handle(404, "GetUserByName", nil)
|
||||||
} else {
|
} else {
|
||||||
ctx.Handle(500, "GetUserByName", err)
|
ctx.Handle(500, "GetUserByName", err)
|
||||||
}
|
}
|
||||||
|
@ -206,7 +206,7 @@ func RepoAssignment() macaron.Handler {
|
||||||
earlyResponseForGoGetMeta(ctx)
|
earlyResponseForGoGetMeta(ctx)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
ctx.Handle(404, "GetRepositoryByName", err)
|
ctx.Handle(404, "GetRepositoryByName", nil)
|
||||||
} else {
|
} else {
|
||||||
ctx.Handle(500, "LookupRepoRedirect", err)
|
ctx.Handle(500, "LookupRepoRedirect", err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue