We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f92535b commit aff307eCopy full SHA for aff307e
pkg/operator/main.go
@@ -112,9 +112,9 @@ func main() {
112
routerWithAuth := router.NewRoute().Subrouter()
113
114
routerWithAuth.Use(endpoints.PanicMiddleware)
115
+ routerWithAuth.Use(endpoints.APIVersionCheckMiddleware)
116
routerWithAuth.Use(endpoints.AWSAuthMiddleware)
117
routerWithAuth.Use(endpoints.ClientIDMiddleware)
- routerWithAuth.Use(endpoints.APIVersionCheckMiddleware)
118
119
routerWithAuth.HandleFunc("/info", endpoints.Info).Methods("GET")
120
routerWithAuth.HandleFunc("/deploy", endpoints.Deploy).Methods("POST")
0 commit comments