Simon Oualid
Simon Oualid
Another (hacky) way I'm not proud of, but hey... it works! ``` document.querySelectorAll('#yourElement a').forEach(a => { a.addEventListener('click', (e) => { e.preventDefault() this.$router.push({ path: a.attributes.href.value }) }) }) ```
Just in case it may help someone. We encountered the same issue and it was because we were not using `HAPROXY_HTTPS_FRONTEND_ACL_WITH_AUTH` and `HAPROXY_HTTPS_FRONTEND_ACL_WITH_AUTH_AND_PATH` (and their equivalent for HTTP) when using...
@paambaati I can't because I need marathon to keep restarting the application if its health check fails `maxConsecutiveFailures` times, but actually, using marathon-lb in `sse` mode remove the application from...
Thank you @minyk but I think it will not work when using the `sse` mode that will remove the backend totally from the haproxy configuration if no healthy backend is...
Same issue here, will try to dig the code to submit a PR if possible.