Lorenz Haase
Lorenz Haase
Is there an option or something to turn off obfuscation?
@iDVB Have you found a solution for your problem with the `setRouteLeaveHook` or any other way to transition between router changes with gsap?
@iDVB thanks I will also try to get it working without gsap-enhancer!
@KSerrania thanks for the detailed explanation. > My guess here is that you are seeing a message like /etc/datadog-agent/security-agent.yaml not found. Exiting datadog-agent-security in the output of the installation script....
Sure, I'll try to get into this again tonight or asap and will post the logs here.
sorry I don't find the time currently, if someone else could share their logs please.
@bandirsen You can exclude your custom routes with the Skipper like this: ```go validatorOptions := &oapiMiddleware.Options{ Skipper: func(c echo.Context) bool { return !strings.HasPrefix(c.Request().URL.Path, "/api/") }, } e.Use(oapiMiddleware.OapiRequestValidatorWithOptions(swagger, validatorOptions)) ``` This...