Welcome! Please see the About page for a little more info on how this works.

0 votes
ago in core.async by

For flow monitoring, HTML, CSS, and javascript assets are served from the resource path "public/". If there is another library on the classpath that also has a resource at "public/index.html", then flow monitoring's assets will get clobbered and serve the wrong web page instead. Alternatively, flow monitoring may clobber someone else's resources.

https://github.com/clojure/core.async.flow-monitor/blob/6248a5d8e4228ab5974289559e3cb11ff3152263/src/clojure/core/async/flow_monitor.clj#L104

This can be addressed by moving resources to a qualified path like "clojure/core/async/flow_monitor/public/index.html".

Please log in or register to answer this question.

...