Luka
Luka
> As is mentioned in equal's [docs](https://pkg.go.dev/github.com/stretchr/testify/assert#Equal) functions are only equal if they are both nil. Looking in the source of the reflect package, any further comparison is [apparently](https://pkg.go.dev/reflect#DeepEqual) not...
Hello, I’m upvoting this. I have several breaking dependencies, such as the github.com/golang/tools one, or this one: https://github.com/google/wire/blob/main/internal/wire/testdata/NoopBuild/want/wire_gen.go Is it possible to use this `goas` with such dependencies?
Bumping again. This is troublesome when importing versionned packages `…/v1`. In my case, `k8s.io/api/core/v1` and `k8s.io/api/apps/v1` are conflicting with each other.
Here's a test with my current configuration. I created a sample table in Cassandra: ``` cqlsh> create table test (id int PRIMARY KEY, date date ); cqlsh> INSERT INTO test...
I just had a success trying over the database with a sample code. I'll try to isolate the error and come here with new results.
The error came from a configuration I had to set for my production cluster: `cluster.ProtoVersion = 3` Without this configuration, I got this error when I call `cluster.CreateSession()`: ``` gocql:...
It may be due to port filtering I did on the cluster. Only one IP (mine) on a single port (`tcp:9042`) is allowed to connect to the cluster, on only...
@alourie It looks like that. Locally, I'm trying to connect to the forwarded host's port, but I tried from the internal network and `gocql` cannot connect to the 2 firsts...
@diegoacuna Unfortunately I didn't found any workaround. After some reflexion, it seems the best solution is to write another package from scratch from the ncurses library handling this scenario. I...
Thanks for fast feedback! Yup, my mistake for full logs. I just edited. About Qt, there's only a few steps in the build process requiring Qt, so I hope we...