-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Iter9 #9
base: main
Are you sure you want to change the base?
Conversation
@@ -0,0 +1,51 @@ | |||
package config |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[BLOCKER] Сделай merge, пожалуйста, первого спринта. Чтобы было понятно какие изменения были
|
||
func (rh *RedirectHandler) HandleRedirect(storage urlstorage.Storage, log liblog.Logger) http.HandlerFunc { | ||
return func(w http.ResponseWriter, r *http.Request) { | ||
if r.Method != http.MethodGet { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[LINT] это сам роут проверяет, можно убрать првоерку
func PanicHandler(next http.Handler) http.Handler { | ||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | ||
defer func() { | ||
if err := recover(); err != nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[LINT] я бы все таки не отлавливал, верней не маскировал паники, если в приложении случилась паника значит что-то где-то идет не так и нужно чтобы приложение упало и это срочно надо поправить. Если будет паника где-то в оплате, операция списания будет происходить корректно, а операция пополнения будет паников в этом случае лучше чтобы сразу все упало
iter9 start