Bogdan Calmac
Bogdan Calmac
Here's my `arm64` image for version `0.4.1` if anyone else needs it: https://hub.docker.com/r/bcalmac/sns
And the Dockerfile if you want to build it locally: ``` FROM openjdk:11.0.13-jre-slim EXPOSE 9911 VOLUME /etc/sns ENV AWS_DEFAULT_REGION=us-west-2 \ AWS_ACCESS_KEY_ID=foo \ AWS_SECRET_ACCESS_KEY=bar \ DB_PATH=/etc/sns/db.json ADD "https://github.com/s12v/sns/releases/download/0.4.1/sns-0.4.1.jar" "/sns.jar" CMD ["java",...
It seems that the syntax in `.aws/config` is a little quirky. I've got same error as everyone else with: ``` [home] region = us-west-2 ``` but the it worked with:...
Is there any workaround in the current version? I'm trying to create a mixin for `org.threeten.extra.Interval` that doesn't have a public constructor. Instances are created with `Interval.of(from,to)`.
UPDATE: I solved the problem by using the private constructor: ```java @JsonIgnoreProperties({ "empty", "unboundedStart", "unboundedEnd" }) @JsonAutoDetect(creatorVisibility = JsonAutoDetect.Visibility.ANY) public abstract class IntervalMixin { public IntervalMixin(@JsonProperty("startInclusive") Instant startInclusive, @JsonProperty("endExclusinve") Instant...
A variant of the original workaround that assumes the `/usr/local/bin` location on MacOS: ``` import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform ... dockerCompose { if (DefaultNativePlatform.currentOperatingSystem.macOsX) { executable = '/usr/local/bin/docker-compose' dockerExecutable = '/usr/local/bin/docker' } }...
I would like to add a use case for this issue. I use the `gradle-docker-compose-plugin` that invokes `docker` at some point. On MacOS with DockerDesktop it is located in `usr/local/bin`....
@wilkinsona @snicoll With version 4 of the Cassandra driver the Cluster class goes away and instantiating the `CqlSession` fails as below when the keyspace is missing: ``` Failed to instantiate...
Another reason for adding keyspace creation is feature parity with the configuration from `spring-data-cassandra`. This functionality is currently available through `org.springframework.data.cassandra.config.AbstractSessionConfiguration#getKeyspaceCreations` with the implementation in `org.springframework.data.cassandra.config.CqlSessionFactoryBean#initializeCluster`. I would assume that...
If other people have the same need, here is my final solution in the form of an auto-configuration that I've added to our company's starter. I've also introduced a property...