Tobias
Tobias
Previously, writing simple types was not in line with the CBOR standard. Writing the array [false,true,null,undefined] would result in 84 38 54 75 96 which is totally off. This is...
Writing simple types is not in line with the CBOR standard. Trying to write the array `[false,true,null,undefined]` results in `84 38 54 75 96` which cannot be decoded e.g. with...
First, thanks for your work on this library! According to the official [Deprecation of Keycloak adapters](https://www.keycloak.org/2022/02/adapter-deprecation.html) post (and the corresponding [GitHub discussion](https://github.com/keycloak/keycloak/discussions/9818)), the [keycloak-nodejs-connect](https://github.com/keycloak/keycloak-nodejs-connect) adapter (which this library relies on)...
Nextcloud limits the length of the group id to 64 characters (see [here](https://github.com/nextcloud/server/blob/master/core/Migrations/Version13000Date20170718121200.php#L307-L311)). Recently, we reached this limit as we include the group's hierarchy in its name in Keycloak. A...
To improve the performance and reduce the load on identity providers, we cache the JWKs and well-known configuration. As administrators might change settings in their identity provider configuration, the cached...
## Motivation The issues #39 and #119 regard authentication on the metrics endpoint. While the configuration using the `path-prefix` WildFly configurations worked okayish, the new Quarkus distribution does not provide...
When using the backtick feature with cat and a file that does not exist, an error message is placed where the file content would be. This error message contained a...
### Expected behavior The error message does not contain typos. ### Actual behavior The errors message looks like this: `/* file cound not be accessed - seeerror messages */`. ###...
### What happened? I have a cluster with 3 nodes, 2 control and 1 worker. I want to scale my cluster with another worker. I have only specified `ansible_host` in...
When the async client connects to the server, it spawns a new thread to handle the arriving messages asynchronously, which is immediately detached with no chance of awaiting its completion....