Fixed bug with path

pull/511/head
kompotkot 2021-12-22 10:36:20 +00:00
rodzic 745e072d1a
commit 2b454dfc01
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -152,7 +152,7 @@ func InitServer() {
serveMux := http.NewServeMux()
serveMux.HandleFunc("/ping", pingRoute)
serveMux.HandleFunc("/lb/", lbHandler)
serveMux.HandleFunc("/nb/", lbHandler)
// Set common middlewares, from bottom to top
commonHandler := logMiddleware(serveMux)