brohitbrose
brohitbrose
Good find. As I mentioned in Slack, the server output is especially disturbing. Regarding client-side, see [here](https://github.com/swimit/swim-platform/issues/47) for something similar. Lane versioning is something that has come up recently for...
Hi @cyanaryan The issue is that Swim consolidates the builder pattern for downlinks into the same class, which is convenient for the common-case (to avoid a separate builder class) but...
Hi @cyanaryan This sounds like a bug in certain versions of swim-js that would take place if the hostUri is structured a certain way (most usually, but not necessarily, when...
@cyanaryan we may have to hack around it a bit since you're probably going to be unable to upgrade the version in your environment. What is the value of the...
@cyanaryan In this early version of swim, having a path component in the hostUri (in your case the final `wss/` is what is responsible for triggering the bug. Two possible...
@cyanaryan Ideally the hostUri would have no path components (only protocol and domain and possibly a port at most), so in your case it would end in the `.cloud` (but...
Reimplimenting `JoinValueLaneView#get(Object)` as ``` final Value structure = this.laneBinding.get(this.keyForm.mold((K) key)); return structure.isDefined() ? this.valueForm.cast(structure) : this.valueForm.unit(); // or null ``` and suppressing "unchecked" warnings seems to work. I tried this...
`swim.concurrent.Theater` appears to contain the root cause of this problem. `Theater#stop` will hang if a currently-executing `Task` within it never completes. The relevant block is: ```java while (!this.pool.isTerminated()) { try...