Remove even more Fatal* calls

This commit is contained in:
Andrew Dunham 2015-04-15 14:14:33 -07:00
parent 1990eba055
commit 7de923d40a
3 changed files with 15 additions and 9 deletions

View file

@ -154,7 +154,7 @@ func getContext(opts graph.Options) (appengine.Context, error) {
req := opts["HTTPRequest"].(*http.Request)
if req == nil {
err := errors.New("HTTP Request needed")
glog.Fatalln(err)
glog.Errorln(err)
return nil, err
}
return appengine.NewContext(req), nil