Eric Fenderbosch

Results 12 issues of Eric Fenderbosch

As title. Makes extending and mocking some things difficult.

feature-request
help wanted

We have an `Option` class, similar to Java's built-it `Optional`. I've created and registered a `TypeModifier`: ```kotlin object OptionTypeModifier : TypeModifier() { override fun modifyType(type: JavaType, jdkType: Type, context: TypeBindings,...

```java return dbMapper.batchLoad(contactsIdsOnly).values().stream(). flatMap(Collection::stream). filter(Contact.class::isInstance). map(Contact.class::cast). // PRMC_POSSIBLY_REDUNDANT_METHOD_CALLS here collect(toList()); ``` javac 10.0.1 spotbugs 3.1.10 fb-contrib 7.4.3.sb MacOS, doesn't seem to happen in our Linux CI builds

needs investigation

There are two method signatures for SLF4J ``Logger::error`` 1st is what you'd expect given the rest of the API: ``public void error(String format, Object... arguments);`` 2nd is different: ``public void...

needs investigation

For example, monitor a queue scale based on the depth.

FEATURE / ENHANCEMENT ## Outcome Desired Remove the requirement that the keyspace must exist prior to running migrations. This could be accomplished by storing the `cassandra_migration_version` table in a separate...

enhancement

Any suggestions on how to use a custom authorizer with this project? I love the fact we can use the JAX-RS annotations, but we need to add a custom authorizer...

My first idea was to add new annotation ``@StronglyConsistentRead`` but realized that whether or not you want strongly consistent reads might vary from call to call and a single repo...

I'm creating an instance of ``DynamoDBTemplate`` in some tests and just noticed that the constructor uses the ``DynamoDBMapper`` class instead of an ``IDynamoDBMapper`` interface. Not a huge deal as I...

enhancement
upstream-bug

## Expected Behavior Correct GSI is selected based on provided attributes. ## Actual Behavior Incorrect GSI is sometimes selected. It seems like the order of indexes in ``@DynamoDBIndexHashKey globalSecondaryIndexNames`` matters....