Emile Cormier
Emile Cormier
> The following scenarios should be outside the scope of the Call Timeouts feature: > > - A caller running its own timer and cancelling an RPC using only the...
Crossbar docs for Wildcard matching, for reference: https://crossbar.io/docs/Pattern-Based-Subscriptions/#wildcard-matching The way I currently interpret it, is that missing "components" before or after a dot are effectively the wildcards. I interpret "component"...
Crossbar wildcard pattern matching tests, for reference: https://github.com/crossbario/crossbar/blob/master/crossbar/router/test/test_wildcard.py Relevant snippet: ```python WILDCARDS = ['.', 'a..c', 'a.b.', 'a..', '.b.', '..', 'x..', '.x.', '..x', 'x..x', 'x.x.', '.x.x', 'x.x.x'] MATCHES = { 'abc':...
@konsultaner > Am I correct? I think you incorrectly assume that wildcards are "greedy" and can consume more than one "component", where "component" means the labels between the dots. If...
> I guess I messed up with the name "URI component". "Component" makes sense purely from an English perspective, it's just that Berners-Lee used the term to mean the parts...
> Is it worth changing and confusing people even more by changing it now? I'm fine either way. I think just about everyone will understand the spec's current usage of...
With router-initiated shutdowns, I think it's too costly for the router to wait for all peers to respond to GOODBYE messages. Instead, the router should send an ABORT with `wamp.close.system_shutdown`...
I think this issue can be closed now. From [the spec](https://wamp-proto.org/wamp_latest_ietf.html#section-10.1-7): > Support for this feature MUST be announced by both Dealers and Brokers via: > > ``` > HELLO.Details.roles..features....
Just a note that the bug reported in my previous comment no longer occurs for me with Crossbar v23.1.2.
The problem is not the depth of the directory structure, but that the install location changes depending on the version used. Having different directories for different major versions (e.g. version...