Michael Penick
Michael Penick
To reproduce. Setup a local nameserver (bind9 in my case) with the the local IPs as the A record entries: ``` $ cat /etc/bind/db.example.com ; ; BIND data file for...
Thanks for the pointer in the docs. I wasn't aware of that. Sorry. > What is the desired behavior in case the DNS record changes? I'm trying to work this...
> One thing that may or may not be relevant: instead of using SnakeYAML directly (btw do we not need a dependency from `pom.xml` to it? Or is it assumed...
I'm able to reproduce using the following: * Run cassandra cluster (use `ccm` or whatever) * Create CQL schema: ```cql CREATE KEYSPACE IF NOT EXISTS ks WITH REPLICATION = {...
Only thing different is the hash: 
After a bunch of debugging it looks like relying on `.hashCode()` for the keyspace hash value is a bad idea. Different executions of the JVM can return different values for...
I have been able to 100% confirm that it is `enum` values hash code changing per execution of the JVM. Here's a hacky "solution" that proves that it's enums by...
One idea is to use an alternate chain of hash calculations functions called `.schemaHashCode()` where every component object implements that method using a stable hashcode calculation i.e. using `.ordinal()` for...
Could we create a dummy token for that use case that has to be explicitly set? versus not having a token being a superuser. ```java public static AuthenticatedUser SUPERUSER =...
Thanks for reporting the issue. These options were not available because, in the past, we've assumed that TLS termination would happen in front of Stargate, but I think Stargate should...