minusdavid

Results 47 comments of minusdavid

What browser are you using? I'm getting this same error as well, and I think it's an old browser embedded in a desktop app...

If you use Internet Explorer in Windows 10 and emulate IE 7, I reproduce this problem.

Looks like the polyfill used in util.js (from https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent) might not be working...

I was hoping that someone would have a ready solution, but I'm having this problem out of the box as well.

Also: - how to use decodeOnceFromVideoDevice - how to use controls.stop() - how to use this code within a function and not from the top level of a script -...

Also got bitten by this problem. The Keycloak container loses its DB connection due to a routine restart of the DB server, and then it gets stuck in a restart...

We encounter this because we use a docker-compose restart policy that restarts the container if there's a container crash or a host reboot: https://docs.docker.com/config/containers/start-containers-automatically/

Also tested using "docker-compose restart" and it worked fine. Looking at the logs, the hundreds of lines of "User with username 'X' already added to '/opt/jboss/keycloak/standalone/configuration/keycloak-add-user.json'" occurred after a fatal...

It looks like "importAddUser" in KeycloakApplication deletes the addUserFile which is the /opt/jboss/keycloak/standalone/configuration/keycloak-add-user.json file after it tries to add the user: services/src/main/java/org/keycloak/services/resources/KeycloakApplication.java However, that deletion won't happen if the Keycloak...

So removing that file in the docker-entrypoint.sh could make sense. I'd say the only issue with the PR is that we might not know for sure what the "addUserFile" should...