Strat1987
Strat1987
Are there plans to support M1 ARM native?
## Expected Behavior Startup without exceptions ## Actual Behavior Loading library prism_es2 from resource failed: java.lang.UnsatisfiedLinkError: /Users/bertroex/.openjfx/cache/14-ea/libprism_es2.dylib: dlopen(/Users/bertroex/.openjfx/cache/14-ea/libprism_es2.dylib, 0x0001): tried: '/Users/bertroex/.openjfx/cache/14-ea/libprism_es2.dylib' (mach-o file, but is an incompatible architecture (have 'x86_64',...
ComparisonOperators.Lte seems to match undefined/null value in switch caseOperator ``` reactiveMongoTemplate.upsert(Query.query( Criteria.where("id").is(b.getId()) ), AggregationUpdate.update() .set("field.value").toValue( ConditionalOperators.switchCases( CaseOperator.when(Gte.valueOf("field_priority") .greaterThanEqualToValue(b.getField().getPriority())) .then("gte"), CaseOperator.when(Lte.valueOf("field_priority") .lessThanEqualToValue(b.getField().getPriority())) .then("lt") ) .defaultTo("default") ), Bar.class)).flatMap(c -> Mono.just(foo)); ``` if...