James Muscat
James Muscat
(From https://groups.google.com/forum/#!msg/crossbario/xjYjd3oCkQg/bKOl6wTDAgAJ) I've noticed some interesting edge cases around retained events and pattern-based subscriptions. As an example, take this scenario: - Node 1 publishes message A to topic `myprefix.A` with...
DanteDevice.add_subscription passes `tx_channel.name` to its `command_add_subscription` method. Dante naming weirdness means that channel "names" are always `'01'`, `'02'` etc. This _works_, and audio is routed appropriately, but it confuses Dante...
Attempting to add a subscription by channel number does not work (results in `RuntimeError: coroutine raised StopIteration`). I think this is because it's attempting to match `channel.number` (which is an...
Apropos #215 - I can't seem to find a type signature that TS is happy with when passing a ref into `Frame`. ```javascript const Test = () => { const...
`/commerce/v1/accounts/{id}/kamereon/kca/car-adapter/v1/cars/{vin}/res-state` (`GET`) Theoretically returns an object with `code` and `details`, where `code` is one of: ``` STOPPED_READY_FOR_KEY(11), STOPPED_READY_FOR_RES(10), RUNNING_BY_KEY(21), RUNNING_BY_RES(42), NOT_AVAILABLE(1), INTERNAL_ERROR(0), NOT_ENABLED(2), NOT_YET_READY(3), ERROR_CODE(9223372036854775808) ``` I don't know what...
(GET): `/commerce/v1/accounts/{id}/kamereon/kca/car-adapter/v1/cars/{vin}/battery-inhibition-status` **Does anyone get anything other than an HTTP `403` for this URL?** I'm presuming it describes the setting that RCI use to prevent charging if a battery lease...
Just wondered if there was an idiomatic way to configure one Admiral frontend instance to talk to multiple backend APIs? In my case, I have a bunch of different microservices...
It looks like Admiral is hard-coded to expect an `id` attribute to be the primary key for data. https://github.com/dev-family/admiral/blob/e58118b7b59c4db542bc0b38acfe66535e7d3026/admiral/dataTable/DataTable.tsx#L281 https://github.com/dev-family/admiral/blob/e58118b7b59c4db542bc0b38acfe66535e7d3026/admiral/crud/index.tsx#L55 https://github.com/dev-family/admiral/blob/e58118b7b59c4db542bc0b38acfe66535e7d3026/admiral/crud/index.tsx#L63 This is an issue if using an API with...