Brian J. Cardiff

Results 130 comments of Brian J. Cardiff

I would not drop the empty password support. Maybe the default installation of MySQL 8 has non-empty root password and can be tweaked (https://medium.com/@benmorel/remove-the-mysql-root-password-ba3fcbe29870, https://stackoverflow.com/questions/48824572/mysql-8-0-unable-to-reset-root-password). Please update the travis.yml to...

In Crystal, the RWLock uses mostly sequential consistent semantics (as explained in https://llvm.org/docs/LangRef.html#atomic-memory-ordering-constraints) for it's implementation. This has proven better for us than acquiring a GC lock. For reference the...

I'm not convinced that `name` is the proposed way to check the annotation type. I'm not convinced that getting all the annotations together is useful. Wouldn't you need to know...

Unable to repro osx crystal 0.36.1, llvm 11.0.1, libxml2 2.9.10 ``` $ crystal --version Crystal 0.36.1 (2021-02-02) LLVM: 11.0.1 Default target: x86_64-apple-macosx $ brew info libxml2 libxml2: stable 2.9.10 (bottled),...

@wontruefree can you check the output of `$ pkg-config libxml-2.0 --libs` ? If it is ``` $ pkg-config libxml-2.0 --libs -lxml2 ``` it means you are not using brew libxml...

I wanted to use `i386/ubuntu:bionic` as the container and I reach the same issue. Yet `/usr/bin/docker exec 43...53 sh -c "cat /etc/*release | grep ^ID"` works locally with that image....

I second the idea of this feature. In my use case we checkout many repos to build them and do some integration testing. Having the sha in the output will...

I stumble on this also. I even attempt to use nix via the following commands from the root of the repo and they also failed. ```console % nix-shell error: nix-shell...

IIRC in Crystal we do fork to perform an exec only, so we don't need to keep coroutines.

@codenoid the connection pool options can be changed in the connection string as shown in https://crystal-lang.org/docs/database/connection_pool.html . * Which version of crystal-mysql are you using? * Can you check if...