This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-09-15
Channels
Hey! Any idea what might be causing a random WebSocket disconnection on load?
Not immediately apparent from a Google search
My main namespace is really small and my config isn’t too complex
(ns deft.client.search)
(defn ^:export -main [& args]
(enable-console-print!)
(println "Hello shadows!"))
(defn reload! [& args]
(println "reloaded!"))
This is the only output from the server
shadow-cljs - HTTP server available at
shadow-cljs - server version: 2.8.52 running at
shadow-cljs - nREPL server started on port 50145
shadow-cljs - watching build :local/client.search
[:local/client.search] Configuring build.
[:local/client.search] Compiling ...
[:local/client.search] Build completed. (157 files, 1 compiled, 0 warnings, 3.00s)
@alexandergunnarson uhm only guess I have is that build ids must be simple keywords? (ie. no namespace)
By the way your intuition was right — works now. Thanks so much!
Haha nice, okay! I will fix that! Thanks 🙂