akikoskinen

Results 14 issues of akikoskinen

Expect all integer values to be in base 10. This way the conversion doesn't try to interpret e.g. 089 as an octal number (which it obviously isn't). The first commit...

The [documentation of `jwt.decode`](https://github.com/mpdavis/python-jose/blob/8a3fa3534daa5bba41a654c337c2a06410e7b59c/jose/jwt.py#L115-L118) says: > Raises: > JWTError: If the signature is invalid in any way. > ExpiredSignatureError: If the signature has expired. > JWTClaimsError: If any claim is...

question
docs

According to `container_definitions` output variable documentation: > A list of container definitions in JSON format that describe the different containers that make up your task But if one sets the...

### Current Behavior A custom authentication flow has been set as an identity provider's first broker login flow alias. In one step the identity provider's first broker login flow alias...

bug

### Problem Statement If I understand the [code in `RoleImportService`](https://github.com/adorsys/keycloak-config-cli/blob/v5.5.0/src/main/java/de/adorsys/keycloak/config/service/RoleImportService.java#L287) correctly, it seems that keycloak-config-cli never deletes client roles that are offered by default by Keycloak. That's probably generally good...

enhancement

### Current Behavior Keycloak-config-cli deletes all existing required actions, only leaving or creating the one mentioned in the realm JSON. ### Expected Behavior Keycloak-config-cli should leave the existing required actions...

bug

The `@validated` class decorator doesn't work with mutation classes inherited from Graphene's `relay.ClientIDMutation`, as issue #10 explains. The `@validated` class decorator also always performs validation before the mutation class's actual...

Relay mutations are those inherited from `graphene.relay.ClientIDMutation`. To reproduce, add this code to `tests.py` and try to run tests: ```python @validated class RelayMutation(graphene.relay.ClientIDMutation): @classmethod def mutate_and_get_payload(cls, root, info, **_inpt): return...

The current heroku-log-parser master branch version adds an `:original` key into the event data but there is no such column in the `events` table. I wouldn't add such column either...

There mostly isn't any reason to use other string data type in Postgres other than TEXT. The fixed length character types were just eating extra space for no reason. Also...